[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / compiler-rt / test / sanitizer_common / android_commands / android_run.py
blob22c88aadce043ab369b37432b923fda2c24d6b56
1 #!/usr/bin/env python
3 import os, signal, sys, subprocess, tempfile
4 from android_common import *
6 ANDROID_TMPDIR = "/data/local/tmp/Output"
8 device_binary = host_to_device_path(sys.argv[0])
11 def build_env():
12 args = []
13 # Android linker ignores RPATH. Set LD_LIBRARY_PATH to Output dir.
14 args.append("LD_LIBRARY_PATH=%s" % (ANDROID_TMPDIR,))
15 for (key, value) in list(os.environ.items()):
16 if key in ["ASAN_ACTIVATION_OPTIONS", "SCUDO_OPTIONS"] or key.endswith(
17 "SAN_OPTIONS"
19 args.append('%s="%s"' % (key, value.replace('"', '\\"')))
20 return " ".join(args)
23 is_64bit = (
24 str(subprocess.check_output(["file", sys.argv[0] + ".real"])).find("64-bit") != -1
27 device_env = build_env()
28 device_args = " ".join(sys.argv[1:]) # FIXME: escape?
29 device_stdout = device_binary + ".stdout"
30 device_stderr = device_binary + ".stderr"
31 device_exitcode = device_binary + ".exitcode"
32 ret = adb(
34 "shell",
35 "cd %s && %s %s %s >%s 2>%s ; echo $? >%s"
36 % (
37 ANDROID_TMPDIR,
38 device_env,
39 device_binary,
40 device_args,
41 device_stdout,
42 device_stderr,
43 device_exitcode,
47 if ret != 0:
48 sys.exit(ret)
50 sys.stdout.write(pull_from_device(device_stdout))
51 sys.stderr.write(pull_from_device(device_stderr))
52 retcode = int(pull_from_device(device_exitcode))
53 # If the device process died with a signal, do abort().
54 # Not exactly the same, but good enough to fool "not --crash".
55 if retcode > 128:
56 os.kill(os.getpid(), signal.SIGABRT)
57 sys.exit(retcode)