This is an ongoing series of commits that are reformatting our Python code. This catches the last of the python files to reformat. Since they where so few I bunched them together. Reformatting is done with `black`. If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run git checkout --ours <yourfile> and then reformat it with black. If you run into any problems, post to discourse about it and we will try to help. RFC Thread below: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Reviewed By: jhenderson, #libc, Mordante, sivachandra Differential Revision: https://reviews.llvm.org/D150784
58 lines
1.6 KiB
Python
Executable File
58 lines
1.6 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os, signal, sys, subprocess, tempfile
|
|
from android_common import *
|
|
|
|
ANDROID_TMPDIR = "/data/local/tmp/Output"
|
|
|
|
device_binary = host_to_device_path(sys.argv[0])
|
|
|
|
|
|
def build_env():
|
|
args = []
|
|
# Android linker ignores RPATH. Set LD_LIBRARY_PATH to Output dir.
|
|
args.append("LD_LIBRARY_PATH=%s" % (ANDROID_TMPDIR,))
|
|
for (key, value) in list(os.environ.items()):
|
|
if key in ["ASAN_ACTIVATION_OPTIONS", "SCUDO_OPTIONS"] or key.endswith(
|
|
"SAN_OPTIONS"
|
|
):
|
|
args.append('%s="%s"' % (key, value.replace('"', '\\"')))
|
|
return " ".join(args)
|
|
|
|
|
|
is_64bit = (
|
|
str(subprocess.check_output(["file", sys.argv[0] + ".real"])).find("64-bit") != -1
|
|
)
|
|
|
|
device_env = build_env()
|
|
device_args = " ".join(sys.argv[1:]) # FIXME: escape?
|
|
device_stdout = device_binary + ".stdout"
|
|
device_stderr = device_binary + ".stderr"
|
|
device_exitcode = device_binary + ".exitcode"
|
|
ret = adb(
|
|
[
|
|
"shell",
|
|
"cd %s && %s %s %s >%s 2>%s ; echo $? >%s"
|
|
% (
|
|
ANDROID_TMPDIR,
|
|
device_env,
|
|
device_binary,
|
|
device_args,
|
|
device_stdout,
|
|
device_stderr,
|
|
device_exitcode,
|
|
),
|
|
]
|
|
)
|
|
if ret != 0:
|
|
sys.exit(ret)
|
|
|
|
sys.stdout.write(pull_from_device(device_stdout))
|
|
sys.stderr.write(pull_from_device(device_stderr))
|
|
retcode = int(pull_from_device(device_exitcode))
|
|
# If the device process died with a signal, do abort().
|
|
# Not exactly the same, but good enough to fool "not --crash".
|
|
if retcode > 128:
|
|
os.kill(os.getpid(), signal.SIGABRT)
|
|
sys.exit(retcode)
|