xref: /third_party/node/test/fixtures/spawn_closed_stdio.py (revision 1cb0ef41)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/test/fixtures/
1import os
2import sys
3import subprocess
4os.close(0)
5os.close(1)
6os.close(2)
7exit_code = subprocess.call(sys.argv[1:], shell=False)
8sys.exit(exit_code)
9

Indexes created Thu Nov 07 10:32:03 CST 2024