summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-12-27 15:16:34 -0600
committerBenjamin Peterson <benjamin@python.org>2011-12-27 15:16:34 -0600
commit0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9 (patch)
tree1cb2c2685a855040caa6ed3d7bf2681ffc3e263f
parent1532c8f9a737c4ae03b5b759ad7b80b1808ec326 (diff)
downloadcpython-git-0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9.tar.gz
propgate error in other conditions
-rw-r--r--Lib/test/test_epoll.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_epoll.py b/Lib/test/test_epoll.py
index 275e59834c..083fd7f79d 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):