Commit 623138c1 authored by Victor Stinner's avatar Victor Stinner

Issue #11453, #18174: Fix leak of file descriptor in test_asyncore

parent 0970657f
......@@ -440,6 +440,8 @@ class FileWrapperTest(unittest.TestCase):
# Issue #11453
fd = os.open(support.TESTFN, os.O_RDONLY)
f = asyncore.file_wrapper(fd)
os.close(fd)
with support.check_warnings(('', ResourceWarning)):
f = None
support.gc_collect()
......@@ -447,6 +449,8 @@ class FileWrapperTest(unittest.TestCase):
def test_close_twice(self):
fd = os.open(support.TESTFN, os.O_RDONLY)
f = asyncore.file_wrapper(fd)
os.close(fd)
f.close()
self.assertEqual(f.fd, -1)
# calling close twice should not fail
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment