Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1 | """This test checks for correct wait3() behavior. |
| 2 | """ |
| 3 | |
| 4 | import os |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 5 | import time |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6 | from test.fork_wait import ForkWait |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 7 | from test.test_support import TestSkipped, run_unittest, reap_children |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 8 | |
| 9 | try: |
| 10 | os.fork |
| 11 | except AttributeError: |
| 12 | raise TestSkipped, "os.fork not defined -- skipping test_wait3" |
| 13 | |
| 14 | try: |
| 15 | os.wait3 |
| 16 | except AttributeError: |
| 17 | raise TestSkipped, "os.wait3 not defined -- skipping test_wait3" |
| 18 | |
| 19 | class Wait3Test(ForkWait): |
| 20 | def wait_impl(self, cpid): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 21 | for i in range(10): |
| 22 | # wait3() shouldn't hang, but some of the buildbots seem to hang |
| 23 | # in the forking tests. This is an attempt to fix the problem. |
| 24 | spid, status, rusage = os.wait3(os.WNOHANG) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 25 | if spid == cpid: |
| 26 | break |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 27 | time.sleep(1.0) |
| 28 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 29 | self.assertEqual(spid, cpid) |
| 30 | self.assertEqual(status, 0, "cause = %d, exit = %d" % (status&0xff, status>>8)) |
| 31 | self.assertTrue(rusage) |
| 32 | |
| 33 | def test_main(): |
| 34 | run_unittest(Wait3Test) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame^] | 35 | reap_children() |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 36 | |
| 37 | if __name__ == "__main__": |
| 38 | test_main() |