Kaydet (Commit) 33c30131 authored tarafından Victor Stinner's avatar Victor Stinner

Issue #25306: Skip test_huntrleaks_fd_leak() of test_regrtest until the bug is

fixed.
üst 5dad1ff8
...@@ -643,6 +643,8 @@ class ArgsTestCase(BaseTestCase): ...@@ -643,6 +643,8 @@ class ArgsTestCase(BaseTestCase):
self.check_executed_tests(output, [test]*3, failed=test) self.check_executed_tests(output, [test]*3, failed=test)
@unittest.skipUnless(Py_DEBUG, 'need a debug build') @unittest.skipUnless(Py_DEBUG, 'need a debug build')
# Issue #25306: the test hangs sometimes on Windows
@unittest.skipIf(sys.platform == 'win32', 'test broken on Windows')
def test_huntrleaks_fd_leak(self): def test_huntrleaks_fd_leak(self):
# test --huntrleaks for file descriptor leak # test --huntrleaks for file descriptor leak
code = textwrap.dedent(""" code = textwrap.dedent("""
......
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