From c32d5cb9ec1182870c20ef794d29b24ce4ee79e8 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 27 Dec 2011 15:16:34 -0600 Subject: [PATCH] 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 216e2c7134..b66d9ea7ac 100644 --- a/Lib/test/test_epoll.py +++ b/Lib/test/test_epoll.py @@ -36,6 +36,7 @@ try: except IOError, e: if e.errno == errno.ENOSYS: raise unittest.SkipTest("kernel doesn't support epoll()") + raise class TestEPoll(unittest.TestCase): -- 2.50.0