[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / compiler-rt / test / sanitizer_common / ios_commands / iossim_env.py
blob57a01f3852b06da635542fc402c4d93e1015070e
1 #!/usr/bin/env python3
3 import os, sys, subprocess
6 idx = 1
7 for arg in sys.argv[1:]:
8 if not "=" in arg:
9 break
10 idx += 1
11 (argname, argval) = arg.split("=")
12 os.environ["SIMCTL_CHILD_" + argname] = argval
14 exitcode = subprocess.call(sys.argv[idx:])
15 if exitcode > 125:
16 exitcode = 126
17 sys.exit(exitcode)