mirror of https://github.com/python/cpython
Issue #25306: Skip test_huntrleaks_fd_leak() of test_regrtest until the bug is
fixed.
This commit is contained in:
parent
5dad1ff8f8
commit
33c30131db
|
@ -643,6 +643,8 @@ class ArgsTestCase(BaseTestCase):
|
|||
self.check_executed_tests(output, [test]*3, failed=test)
|
||||
|
||||
@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):
|
||||
# test --huntrleaks for file descriptor leak
|
||||
code = textwrap.dedent("""
|
||||
|
|
Loading…
Reference in New Issue