summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_select.py
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-10-05 01:28:20 (GMT)
committerJesus Cea <jcea@jcea.es>2012-10-05 01:28:20 (GMT)
commitfa7d5392d467d832e259aff3834bc19a3c005600 (patch)
treef3d28cc57fd36a3cc2ce1d5a99fbfed3dc798c86 /Lib/test/test_select.py
parent4791a242688167ffc4abb3b9f42d6cd9e877652e (diff)
downloadcpython-fa7d5392d467d832e259aff3834bc19a3c005600.zip
cpython-fa7d5392d467d832e259aff3834bc19a3c005600.tar.gz
cpython-fa7d5392d467d832e259aff3834bc19a3c005600.tar.bz2
Test should be skipped in 'riscos', as intented
Diffstat (limited to 'Lib/test/test_select.py')
-rw-r--r--Lib/test/test_select.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py
index 3144c54..8d910ed 100644
--- a/Lib/test/test_select.py
+++ b/Lib/test/test_select.py
@@ -5,7 +5,8 @@ import sys
import unittest
from test import support
-@unittest.skipIf(sys.platform[:3] in ('win', 'os2', 'riscos'),
+@unittest.skipIf(sys.platform[:3] in ('win', 'os2') or \
+ sys.platform=='riscos'),
"can't easily test on this system")
class SelectTestCase(unittest.TestCase):