From fa7d5392d467d832e259aff3834bc19a3c005600 Mon Sep 17 00:00:00 2001 From: Jesus Cea Date: Fri, 5 Oct 2012 03:28:20 +0200 Subject: [PATCH] Test should be skipped in 'riscos', as intented --- Lib/test/test_select.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py index 3144c549eb2..8d910ed1c3c 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):