summaryrefslogtreecommitdiff
path: root/Lib/test/test_fork1.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-02-25 19:25:05 +0000
committerGuido van Rossum <guido@python.org>2000-02-25 19:25:05 +0000
commitb9408c2438c1047c18b9045e70bc68db716471e3 (patch)
treeeb66276888b5cd736f4b5409a422f810508e5c54 /Lib/test/test_fork1.py
parent29d8f6af8e4dc0e2ffe105a79e5c6a3eedcbdc74 (diff)
downloadcpython-b9408c2438c1047c18b9045e70bc68db716471e3.tar.gz
Test case for fork1() behavior.
Only the main thread should survive in the child after a fork().
Diffstat (limited to 'Lib/test/test_fork1.py')
-rw-r--r--Lib/test/test_fork1.py54
1 files changed, 54 insertions, 0 deletions
diff --git a/Lib/test/test_fork1.py b/Lib/test/test_fork1.py
new file mode 100644
index 0000000000..361664e00e
--- /dev/null
+++ b/Lib/test/test_fork1.py
@@ -0,0 +1,54 @@
+"""This test checks for correct fork() behavior.
+
+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.
+
+"""
+
+import os, sys, time, thread
+
+LONGSLEEP = 2
+
+SHORTSLEEP = 0.5
+
+alive = {}
+
+def f(id):
+ while 1:
+ alive[id] = os.getpid()
+ try:
+ time.sleep(SHORTSLEEP)
+ except IOError:
+ pass
+
+def main():
+ for i in range(4):
+ thread.start_new(f, (i,))
+
+ time.sleep(LONGSLEEP)
+
+ a = alive.keys()
+ a.sort()
+ assert a == range(4)
+
+ cpid = os.fork()
+
+ if cpid == 0:
+ # Child
+ time.sleep(LONGSLEEP)
+ n = 0
+ pid = os.getpid()
+ for key in alive.keys():
+ if alive[key] == pid:
+ n = n+1
+ os._exit(n)
+ else:
+ # Parent
+ spid, status = os.waitpid(cpid, 0)
+ assert spid == cpid
+ assert status == 0, "cause = %d, exit = %d" % (status&0xff, status>>8)
+
+main()