diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-10-03 19:20:41 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-10-03 19:20:41 (GMT) |
commit | 33c30131db0249dec166fcbe22cd9152b405e170 (patch) | |
tree | c6677a396edd5371c5567819338054246f7ed987 /Lib/test/test_regrtest.py | |
parent | 5dad1ff8f815727515d455bbe850d2126bc07904 (diff) | |
download | cpython-33c30131db0249dec166fcbe22cd9152b405e170.zip cpython-33c30131db0249dec166fcbe22cd9152b405e170.tar.gz cpython-33c30131db0249dec166fcbe22cd9152b405e170.tar.bz2 |
Issue #25306: Skip test_huntrleaks_fd_leak() of test_regrtest until the bug is
fixed.
Diffstat (limited to 'Lib/test/test_regrtest.py')
-rw-r--r-- | Lib/test/test_regrtest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index e0307a8..edbb4b0 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -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(""" |