about summary refs log tree commit diff
path: root/src/etc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-02-17 19:35:12 +0000
committerbors <bors@rust-lang.org>2015-02-17 19:35:12 +0000
commit6c065fc8cb036785f61ff03e05c1563cbb2dd081 (patch)
tree9d5c813da4a4f24c177e10c9a38936fe0d014721 /src/etc
parentf9aeea7cb7865a2b82e7102837daabbe549177ea (diff)
parent194d96e5c3b3bf069ff791813641b7d22f4f42e9 (diff)
downloadrust-6c065fc8cb036785f61ff03e05c1563cbb2dd081.tar.gz
rust-6c065fc8cb036785f61ff03e05c1563cbb2dd081.zip
Auto merge of #21774 - ejjeong:enable-test-for-android, r=alexcrichton
- Now "make check-stage2-T-aarch64-linux-android-H-x86_64-unknown-linux-gnu" works (#21773)
- Fix & enable debuginfo tests for android (#10381)
- Fix & enable more tests for android (both for arm/aarch64)
- Enable many already-pass tests on android (both for arm/aarch64)
Diffstat (limited to 'src/etc')
-rwxr-xr-xsrc/etc/adb_run_wrapper.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/etc/adb_run_wrapper.sh b/src/etc/adb_run_wrapper.sh
index 6b5220597e9..bd6c483156f 100755
--- a/src/etc/adb_run_wrapper.sh
+++ b/src/etc/adb_run_wrapper.sh
@@ -24,8 +24,9 @@ then
     then
         shift
 
+        # The length of binary path (i.e. ./$RUN) should be shorter than 128 characters.
         cd $TEST_PATH
-        TEST_EXEC_ENV=22 LD_LIBRARY_PATH=$TEST_PATH PATH=$BIN_PATH:$TEST_PATH $TEST_PATH/$RUN $@ 1>$TEST_PATH/$RUN.stdout 2>$TEST_PATH/$RUN.stderr
+        TEST_EXEC_ENV=22 LD_LIBRARY_PATH=$TEST_PATH PATH=$BIN_PATH:$TEST_PATH ./$RUN $@ 1>$TEST_PATH/$RUN.stdout 2>$TEST_PATH/$RUN.stderr
         L_RET=$?
 
         echo $L_RET > $TEST_PATH/$RUN.exitcode