[Python-checkins] cpython: Test should be skipped in 'riscos', as intented

jesus.cea python-checkins at python.org
Fri Oct 5 03:38:41 CEST 2012


http://hg.python.org/cpython/rev/f14f30b3891a
changeset:   79481:f14f30b3891a
user:        Jesus Cea <jcea at jcea.es>
date:        Fri Oct 05 03:28:20 2012 +0200
summary:
  Test should be skipped in 'riscos', as intented

files:
  Lib/test/test_select.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py
--- a/Lib/test/test_select.py
+++ b/Lib/test/test_select.py
@@ -5,7 +5,8 @@
 import unittest
 from test import support
 
- at unittest.skipIf(sys.platform[:3] in ('win', 'os2', 'riscos'),
+ at unittest.skipIf(sys.platform[:3] in ('win', 'os2') or \
+        sys.platform=='riscos'),
                  "can't easily test on this system")
 class SelectTestCase(unittest.TestCase):
 

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


More information about the Python-checkins mailing list