run_tests.sh: run tests on arm64

This commit is contained in:
Eric Biggers 2017-03-19 12:24:13 -07:00
parent a32bdb097d
commit 27c13370cb

View File

@ -133,12 +133,8 @@ native_tests() {
############################################################################### ###############################################################################
android_build() {
run_cmd ./tools/android_build.sh --ndkdir="$NDKDIR" "$@"
}
android_build_and_test() { android_build_and_test() {
android_build "$@" run_cmd ./tools/android_build.sh --ndkdir="$NDKDIR" "$@"
run_cmd adb push "${FILES[@]}" /data/local/tmp/ run_cmd adb push "${FILES[@]}" /data/local/tmp/
# Note: adb shell always returns 0, even if the shell command fails... # Note: adb shell always returns 0, even if the shell command fails...
@ -179,8 +175,7 @@ android_tests() {
android_build_and_test --arch=arm --compiler=$compiler \ android_build_and_test --arch=arm --compiler=$compiler \
--disable-neon --disable-neon
# arm64: currently compiled but not run android_build_and_test --arch=arm64 --compiler=$compiler
android_build --arch=arm64 --compiler=$compiler
done done
} }