blob: bd06c8d8bd3471ded4e78b45350f2c307f8d5373 [file] [log] [blame]
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001"""This test checks for correct wait3() behavior.
2"""
3
4import os
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005import time
Benjamin Petersone549ead2009-03-28 21:42:05 +00006import unittest
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00007from test.fork_wait import ForkWait
Benjamin Petersone549ead2009-03-28 21:42:05 +00008from test.support import run_unittest, reap_children
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009
10try:
11 os.fork
12except AttributeError:
Benjamin Petersone549ead2009-03-28 21:42:05 +000013 raise unittest.SkipTest("os.fork not defined -- skipping test_wait3")
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000014
15try:
16 os.wait3
17except AttributeError:
Benjamin Petersone549ead2009-03-28 21:42:05 +000018 raise unittest.SkipTest("os.wait3 not defined -- skipping test_wait3")
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000019
20class Wait3Test(ForkWait):
21 def wait_impl(self, cpid):
Antoine Pitrou606c3f52011-05-09 21:17:02 +020022 # This many iterations can be required, since some previously run
23 # tests (e.g. test_ctypes) could have spawned a lot of children
24 # very quickly.
25 for i in range(30):
Thomas Wouters0e3f5912006-08-11 14:57:12 +000026 # wait3() shouldn't hang, but some of the buildbots seem to hang
27 # in the forking tests. This is an attempt to fix the problem.
28 spid, status, rusage = os.wait3(os.WNOHANG)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000029 if spid == cpid:
30 break
Antoine Pitrou606c3f52011-05-09 21:17:02 +020031 time.sleep(0.1)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000032
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000033 self.assertEqual(spid, cpid)
34 self.assertEqual(status, 0, "cause = %d, exit = %d" % (status&0xff, status>>8))
35 self.assertTrue(rusage)
36
37def test_main():
38 run_unittest(Wait3Test)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000039 reap_children()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000040
41if __name__ == "__main__":
42 test_main()