Clean up the messages used by some tests.

This commit is contained in:
Brett Cannon 2012-11-14 15:16:53 -05:00
parent 8c5ec0a3af
commit cd8efa3704
4 changed files with 7 additions and 11 deletions

View file

@ -8,7 +8,7 @@
try:
select.devpoll
except AttributeError:
raise unittest.SkipTest("select.devpoll not defined -- skipping test_devpoll")
raise unittest.SkipTest("select.devpoll not defined")
def find_ready_matching(ready, flag):

View file

@ -4,7 +4,7 @@
from test.support import run_unittest
if not hasattr(os, "openpty"):
raise unittest.SkipTest("No openpty() available.")
raise unittest.SkipTest("os.openpty() not available.")
class OpenptyTest(unittest.TestCase):

View file

@ -6,7 +6,7 @@
try:
select.poll
except AttributeError:
raise unittest.SkipTest("select.poll not defined -- skipping test_poll")
raise unittest.SkipTest("select.poll not defined")
def find_ready_matching(ready, flag):

View file

@ -7,15 +7,11 @@
from test.fork_wait import ForkWait
from test.support import run_unittest, reap_children
try:
os.fork
except AttributeError:
raise unittest.SkipTest("os.fork not defined -- skipping test_wait3")
if not hassattr(os, 'fork'):
raise unittest.SkipTest("os.fork not defined")
try:
os.wait3
except AttributeError:
raise unittest.SkipTest("os.wait3 not defined -- skipping test_wait3")
if not hasattr(os, 'wait3'):
raise unittest.SkipTest("os.wait3 not defined")
class Wait3Test(ForkWait):
def wait_impl(self, cpid):