[Python-checkins] cpython (2.7): Temporarily disabled test_race on Windows.

vinay.sajip python-checkins at python.org
Sun May 20 10:53:54 CEST 2012


http://hg.python.org/cpython/rev/235ee0a32ab5
changeset:   77073:235ee0a32ab5
branch:      2.7
user:        Vinay Sajip <vinay_sajip at yahoo.co.uk>
date:        Sun May 20 09:53:13 2012 +0100
summary:
  Temporarily disabled test_race on Windows.

files:
  Lib/test/test_logging.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -1877,6 +1877,7 @@
 
 class HandlerTest(BaseTest):
 
+    @unittest.skipIf(os.name == 'nt', 'Temporarily disabled for Windows')
     @unittest.skipUnless(threading, 'Threading required for this test.')
     def test_race(self):
         # Issue #14632 refers.

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


More information about the Python-checkins mailing list