diff options
author | jeffhao <jeffhao@google.com> | 2012-11-20 15:13:43 -0800 |
---|---|---|
committer | jeffhao <jeffhao@google.com> | 2012-11-20 15:13:43 -0800 |
commit | 0dff3f4d41ce8308d1973f317463941abbf79b81 (patch) | |
tree | 195db3166e255809d9096295872ac0c6dbf50933 /test/run-all-tests | |
parent | 8e56c7e41cb37e2eaf553503968a01ff893b135b (diff) | |
download | art-0dff3f4d41ce8308d1973f317463941abbf79b81.zip art-0dff3f4d41ce8308d1973f317463941abbf79b81.tar.gz art-0dff3f4d41ce8308d1973f317463941abbf79b81.tar.bz2 |
Add -interpreter to run-test to test interpreter only mode.
Change-Id: I0addb26d22d3e7d486b40119ad35639dd15b9d53
Diffstat (limited to 'test/run-all-tests')
-rwxr-xr-x | test/run-all-tests | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/run-all-tests b/test/run-all-tests index 3176f02..a6675df 100755 --- a/test/run-all-tests +++ b/test/run-all-tests @@ -49,6 +49,9 @@ while true; do elif [ "x$1" = "x--zygote" ]; then run_args="${run_args} --zygote" shift + elif [ "x$1" = "x--interpreter" ]; then + run_args="${run_args} --interpreter" + shift elif [ "x$1" = "x--no-verify" ]; then run_args="${run_args} --no-verify" shift @@ -84,8 +87,8 @@ if [ "$usage" = "yes" ]; then echo " $prog [options] Run all tests with the given options." echo " Options are all passed to run-test; refer to that for " \ "further documentation:" - echo " --debug --dev --host --jvm --no-optimize --no-verify" - echo " -O --update --valgrind --zygote" + echo " --debug --dev --host --interpreter --jvm --no-optimize" + echo " --no-verify -O --update --valgrind --zygote" ) 1>&2 exit 1 fi |