From 2f4315c21cdb4262b0601f25f6f10bb916e2318c Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 18 Feb 2018 23:03:26 -0800 Subject: [PATCH] tools/run_tests.sh: more Android tests --- tools/run_tests.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/run_tests.sh b/tools/run_tests.sh index d468eef..f7bae5d 100755 --- a/tools/run_tests.sh +++ b/tools/run_tests.sh @@ -201,12 +201,12 @@ android_tests() { fi for compiler in gcc clang; do - android_build_and_test --arch=arm --compiler=$compiler - - android_build_and_test --arch=arm --compiler=$compiler \ - --disable-neon - - android_build_and_test --arch=arm64 --compiler=$compiler + for flags in "" "--enable-neon" "--enable-crypto"; do + for arch in arm32 arm64; do + android_build_and_test --arch=$arch \ + --compiler=$compiler $flags + done + done done }