summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2008-03-23 04:43:09 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2008-03-23 04:43:09 (GMT)
commit3bda069c5ab3a172c46f5f81b972a7e05161196a (patch)
tree6d329382f4e5d7fb2fc98fb9f80d836231cf5b90
parent162d719113d4b2d76e1fdf9e10ec2dd965152554 (diff)
downloadcpython-3bda069c5ab3a172c46f5f81b972a7e05161196a.zip
cpython-3bda069c5ab3a172c46f5f81b972a7e05161196a.tar.gz
cpython-3bda069c5ab3a172c46f5f81b972a7e05161196a.tar.bz2
Skip the epoll test if epoll() does not work
-rw-r--r--Lib/test/test_epoll.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_epoll.py b/Lib/test/test_epoll.py
index f56d74f..ab1756c 100644
--- a/Lib/test/test_epoll.py
+++ b/Lib/test/test_epoll.py
@@ -33,6 +33,12 @@ from test import test_support
if not hasattr(select, "epoll"):
raise test_support.TestSkipped("test works only on Linux 2.6")
+try:
+ select.epoll()
+except IOError, e:
+ if e.errno == errno.ENOSYS:
+ raise test_support.TestSkipped("kernel doesn't support epoll()")
+
class TestEPoll(unittest.TestCase):
def setUp(self):