- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathfork_wait.py
80 lines (64 loc) · 2.29 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
"""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, time, unittest
importthreading
fromtestimportsupport
fromtest.supportimportthreading_helper
importwarnings
LONGSLEEP=2
SHORTSLEEP=0.5
NUM_THREADS=4
classForkWait(unittest.TestCase):
defsetUp(self):
self._threading_key=threading_helper.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()
threading_helper.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, *, exitcode):
support.wait_process(cpid, exitcode=exitcode)
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
for_insupport.sleeping_retry(support.SHORT_TIMEOUT):
iflen(self.alive) >=NUM_THREADS:
break
a=sorted(self.alive.keys())
self.assertEqual(a, list(range(NUM_THREADS)))
prefork_lives=self.alive.copy()
# Ignore the warning about fork with threads.
withwarnings.catch_warnings(category=DeprecationWarning,
action="ignore"):
if (cpid:=os.fork()) ==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, exitcode=0)