summaryrefslogtreecommitdiffstats
path: root/Lib/test/subprocessdata/sigchild_ignore.py
blob: 6072aece28a89001e37987af2d539dff0c5498b9 (plain)
1
2
3
4
5
6
import signal, subprocess, sys
# On Linux this causes os.waitpid to fail with OSError as the OS has already
# reaped our child process.  The wait() passing the OSError on to the caller
# and causing us to exit with an error is what we are testing against.
signal.signal(signal.SIGCHLD, signal.SIG_IGN)
subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()