1#!/usr/bin/env python
2
3import os, signal, sys, subprocess, tempfile
4from android_common import *
5
6ANDROID_TMPDIR = '/data/local/tmp/Output'
7
8device_binary = host_to_device_path(sys.argv[0])
9
10def build_env():
11    args = []
12    # Android linker ignores RPATH. Set LD_LIBRARY_PATH to Output dir.
13    args.append('LD_LIBRARY_PATH=%s' % (ANDROID_TMPDIR,))
14    for (key, value) in list(os.environ.items()):
15        if key in ['ASAN_ACTIVATION_OPTIONS', 'SCUDO_OPTIONS'] or key.endswith('SAN_OPTIONS'):
16            args.append('%s="%s"' % (key, value.replace('"', '\\"')))
17    return ' '.join(args)
18
19is_64bit = str(subprocess.check_output(['file', sys.argv[0] + '.real'])).find('64-bit') != -1
20
21device_env = build_env()
22device_args = ' '.join(sys.argv[1:]) # FIXME: escape?
23device_stdout = device_binary + '.stdout'
24device_stderr = device_binary + '.stderr'
25device_exitcode = device_binary + '.exitcode'
26ret = adb(['shell', 'cd %s && %s %s %s >%s 2>%s ; echo $? >%s' %
27           (ANDROID_TMPDIR, device_env, device_binary, device_args,
28            device_stdout, device_stderr, device_exitcode)])
29if ret != 0:
30    sys.exit(ret)
31
32sys.stdout.write(pull_from_device(device_stdout))
33sys.stderr.write(pull_from_device(device_stderr))
34retcode = int(pull_from_device(device_exitcode))
35# If the device process died with a signal, do abort().
36# Not exactly the same, but good enough to fool "not --crash".
37if retcode > 128:
38  os.kill(os.getpid(), signal.SIGABRT)
39sys.exit(retcode)
40