From: Benjamin Peterson Date: Tue, 20 Apr 2010 21:02:36 +0000 (+0000) Subject: skip this test on windows, too #8459 X-Git-Tag: v2.6.6rc1~426 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dbcf740f3f00d9daadbbbf9760a5a802830d8bad;p=thirdparty%2FPython%2Fcpython.git skip this test on windows, too #8459 --- diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py index f596862d154b..6cfb96ada568 100644 --- a/Lib/test/test_select.py +++ b/Lib/test/test_select.py @@ -20,6 +20,10 @@ class SelectTestCase(unittest.TestCase): 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)