- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathfork_wait.py
91 lines (73 loc) · 2.53 KB
/
fork_wait.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
"""This test case provides support for checking forking and wait behavior.
To test different wait behavior, override the wait_impl method.
We want fork1() semantics -- only the forking thread survives in the
child after a fork().
On some systems (e.g. Solaris without posix threads) we find that all
active threads survive in the child after a fork(); this is an error.
"""
importos, sys, time, unittest
importthreading
importtest.supportassupport
LONGSLEEP=2
SHORTSLEEP=0.5
NUM_THREADS=4
classForkWait(unittest.TestCase):
defsetUp(self):
self._threading_key=support.threading_setup()
self.alive= {}
self.stop=0
self.threads= []
deftearDown(self):
# Stop threads
self.stop=1
forthreadinself.threads:
thread.join()
thread=None
self.threads.clear()
support.threading_cleanup(*self._threading_key)
deff(self, id):
whilenotself.stop:
self.alive[id] =os.getpid()
try:
time.sleep(SHORTSLEEP)
exceptOSError:
pass
defwait_impl(self, cpid):
foriinrange(10):
# waitpid() shouldn't hang, but some of the buildbots seem to hang
# in the forking tests. This is an attempt to fix the problem.
spid, status=os.waitpid(cpid, os.WNOHANG)
ifspid==cpid:
break
time.sleep(2*SHORTSLEEP)
self.assertEqual(spid, cpid)
self.assertEqual(status, 0, "cause = %d, exit = %d"% (status&0xff, status>>8))
deftest_wait(self):
foriinrange(NUM_THREADS):
thread=threading.Thread(target=self.f, args=(i,))
thread.start()
self.threads.append(thread)
# busy-loop to wait for threads
deadline=time.monotonic() +10.0
whilelen(self.alive) <NUM_THREADS:
time.sleep(0.1)
ifdeadline<time.monotonic():
break
a=sorted(self.alive.keys())
self.assertEqual(a, list(range(NUM_THREADS)))
prefork_lives=self.alive.copy()
ifsys.platformin ['unixware7']:
cpid=os.fork1()
else:
cpid=os.fork()
ifcpid==0:
# Child
time.sleep(LONGSLEEP)
n=0
forkeyinself.alive:
ifself.alive[key] !=prefork_lives[key]:
n+=1
os._exit(n)
else:
# Parent
self.wait_impl(cpid)