diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-12-27 15:16:34 -0600 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-12-27 15:16:34 -0600 |
commit | c32d5cb9ec1182870c20ef794d29b24ce4ee79e8 (patch) | |
tree | 0d55ed322b0e835bd787e7b15910295525881ede /Lib/test/test_epoll.py | |
parent | 042370e7503504b23ed13c56c8599a620569eab6 (diff) | |
download | cpython-git-c32d5cb9ec1182870c20ef794d29b24ce4ee79e8.tar.gz |
propgate error in other conditions
Diffstat (limited to 'Lib/test/test_epoll.py')
-rw-r--r-- | Lib/test/test_epoll.py | 1 |
1 files changed, 1 insertions, 0 deletions
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): |