summaryrefslogtreecommitdiff
path: root/test/fixtures/spawn_closed_stdio.py
blob: b5de2552c2b13e607d8a210180cdec8cd3b98d6e (plain)
1
2
3
4
5
6
7
8
import os
import sys
import subprocess
os.close(0)
os.close(1)
os.close(2)
exit_code = subprocess.call(sys.argv[1:], shell=False)
sys.exit(exit_code)