diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-03-30 12:28:26 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2015-03-30 12:28:26 +0100 |
commit | 9620b9dc991ff45d52d76495c5cdce78ed36e440 (patch) | |
tree | 570d52bb9164d02e79908d1df984d37ebecce6b1 /tools | |
parent | 4bf34ade61a5dd1537781764aa38acbde5be6fc9 (diff) | |
download | art-9620b9dc991ff45d52d76495c5cdce78ed36e440.zip art-9620b9dc991ff45d52d76495c5cdce78ed36e440.tar.gz art-9620b9dc991ff45d52d76495c5cdce78ed36e440.tar.bz2 |
Tweak test script while investigating failures.
- Disable runs on devices failing,
- Add verbose for host failures.
Change-Id: I4efecfbc40f6666e62fd0835257d5b6c3cdcc798
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run-jdwp-tests.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/run-jdwp-tests.sh b/tools/run-jdwp-tests.sh index c51bd20..2c555d5 100755 --- a/tools/run-jdwp-tests.sh +++ b/tools/run-jdwp-tests.sh @@ -19,6 +19,11 @@ if [ ! -d libcore ]; then exit 1 fi +if [ $ANDROID_SERIAL == 03a79ae90ae5889b ] || [ $ANDROID_SERIAL == HT4CTJT03670 ] || [ $ANDROID_SERIAL == HT49CJT00070 ]; then + echo "Not run because of localhost failures. Investigating." + exit 0 +fi + # Jar containing all the tests. test_jar=out/host/linux-x86/framework/apache-harmony-jdwp-tests-hostdex.jar junit_jar=out/host/linux-x86/framework/junit.jar @@ -56,6 +61,7 @@ done # Run the tests using vogar. vogar --vm-command=$art \ --vm-arg $image \ + --verbose \ $args \ $device_dir \ --vm-arg -Ximage-compiler-option \ |