diff options
author | Elliott Hughes <enh@google.com> | 2019-04-26 15:12:57 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2019-04-26 17:45:17 -0700 |
commit | 4da99ffe5e35918c46228ec4a494e54697a2d0cb (patch) | |
tree | 03e2434d8ea557ede31878d3b797ee22eaf7f91a /benchmarks | |
parent | 401e2efa39797c61e174b6e3f12e7b41d7511fc3 (diff) |
Fix running tests/benchmarks on the host.
This was broken by all the mainline modules stuff. It's quite a bit
hairier to set up now, given that we don't have an apexd on the host.
An alternative might be to actually set up a fake /apex that points to
the bootstrap directories?
Test: ./benchmarks/run-on-host.sh 64
Test: ./tests/run-on-host.sh 64
Change-Id: If2c277ba492c7c443cdf51526ea42f56568e2ea6
Diffstat (limited to 'benchmarks')
-rwxr-xr-x | benchmarks/run-on-host.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/run-on-host.sh b/benchmarks/run-on-host.sh index af96b27b9..0f2aefb61 100755 --- a/benchmarks/run-on-host.sh +++ b/benchmarks/run-on-host.sh @@ -25,7 +25,7 @@ if [ ${HOST_OS}-${HOST_ARCH} = linux-x86 -o ${HOST_OS}-${HOST_ARCH} = linux-x86_ cd ${ANDROID_BUILD_TOP} export ANDROID_DATA=${TARGET_OUT_DATA} export ANDROID_ROOT=${TARGET_OUT} - ${NATIVETEST}/bionic-benchmarks/bionic-benchmarks $@ + ${BENCHMARKS}/bionic-benchmarks/bionic-benchmarks $@ ) else echo "$0 not supported on TARGET_ARCH=$TARGET_ARCH" |