[Python-checkins] cpython: Issue #25306: Skip test_huntrleaks_fd_leak() of test_regrtest until the bug is

victor.stinner python-checkins at python.org
Sat Oct 3 15:22:48 EDT 2015


https://hg.python.org/cpython/rev/fd915645627a
changeset:   98524:fd915645627a
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sat Oct 03 21:20:41 2015 +0200
summary:
  Issue #25306: Skip test_huntrleaks_fd_leak() of test_regrtest until the bug is
fixed.

files:
  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
--- a/Lib/test/test_regrtest.py
+++ b/Lib/test/test_regrtest.py
@@ -643,6 +643,8 @@
         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("""

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list