From 0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 27 Dec 2011 15:16:34 -0600 Subject: propgate error in other conditions --- Lib/test/test_epoll.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_epoll.py b/Lib/test/test_epoll.py index 275e598..083fd7f 100644 --- a/Lib/test/test_epoll.py +++ b/Lib/test/test_epoll.py @@ -36,6 +36,7 @@ try: except IOError as e: if e.errno == errno.ENOSYS: raise unittest.SkipTest("kernel doesn't support epoll()") + raise class TestEPoll(unittest.TestCase): -- cgit v0.12