From 680570f8235e56c45123cddf8f3de79c9da6a712 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Thu, 13 Jun 2019 10:26:08 -1000 Subject: [PATCH] Temporarily disable armv7-linux-androideabi testing due to CI failures. --- mk/travis.sh | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/mk/travis.sh b/mk/travis.sh index 20545eb387..e197339f23 100755 --- a/mk/travis.sh +++ b/mk/travis.sh @@ -100,28 +100,8 @@ armv7-linux-androideabi) echo no | android create avd --name arm-24 --target android-24 --abi armeabi-v7a android list avd - emulator @arm-24 -memory 2048 -no-skin -no-boot-anim -no-window & - adb wait-for-device - adb root - adb wait-for-device - - # Run the unit tests first. The file named ring- in $target_dir is - # the test executable. - - find $target_dir -maxdepth 1 -name ring-* ! -name "*.*" \ - -exec adb push {} /data/ring-test \; - adb shell "cd /data && ./ring-test" 2>&1 | tee /tmp/ring-test-log - grep "test result: ok" /tmp/ring-test-log - - for test_exe in `find $target_dir -maxdepth 1 -name "*test*" -type f ! -name "*.*" `; do - adb push $test_exe /data/`basename $test_exe` - adb shell "cd /data && ./`basename $test_exe`" 2>&1 | \ - tee /tmp/`basename $test_exe`-log - grep "test result: ok" /tmp/`basename $test_exe`-log - done - - adb emu kill - + # TODO: testing is disabled because of the following error when running `emulator`: + # Your emulator is out of date, please update by launching Android Studio ;; *) cargo test -vv -j2 ${mode-} ${FEATURES_X-} --target=$TARGET_X