[Python-checkins] r80281 - python/branches/release26-maint/Lib/test/test_select.py

benjamin.peterson python-checkins at python.org
Tue Apr 20 23:02:36 CEST 2010


Author: benjamin.peterson
Date: Tue Apr 20 23:02:36 2010
New Revision: 80281

Log:
skip this test on windows, too #8459

Modified:
   python/branches/release26-maint/Lib/test/test_select.py

Modified: python/branches/release26-maint/Lib/test/test_select.py
==============================================================================
--- python/branches/release26-maint/Lib/test/test_select.py	(original)
+++ python/branches/release26-maint/Lib/test/test_select.py	Tue Apr 20 23:02:36 2010
@@ -20,6 +20,10 @@
         self.assertRaises(TypeError, select.select, [], [], [], "not a number")
 
     def test_returned_list_identity(self):
+        if sys.platform[:3] in ('win', 'mac', 'os2'):
+            if test_support.verbose:
+                print "can't easily test on this system"
+            return
         # See issue #8329
         r, w, x = select.select([], [], [], 1)
         self.assertFalse(r is w)


More information about the Python-checkins mailing list