summaryrefslogtreecommitdiffstats
path: root/test/run-all-tests
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2015-02-24 01:29:46 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-02-24 01:29:47 +0000
commit4fa1a274024067e160a60d0a77124e95dca980e1 (patch)
tree61dd41429b6b2ed29239f0c619c0e7ea058fd4ac /test/run-all-tests
parent40c99de1fd26f9ba6fae20a01175240b96fc7443 (diff)
parent2535abe7d1fcdd0e6aca782b1f1932a703ed50a4 (diff)
downloadart-4fa1a274024067e160a60d0a77124e95dca980e1.zip
art-4fa1a274024067e160a60d0a77124e95dca980e1.tar.gz
art-4fa1a274024067e160a60d0a77124e95dca980e1.tar.bz2
Merge "Add JIT"
Diffstat (limited to 'test/run-all-tests')
-rwxr-xr-xtest/run-all-tests5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/run-all-tests b/test/run-all-tests
index 318a0de..d0b3cf9 100755
--- a/test/run-all-tests
+++ b/test/run-all-tests
@@ -53,6 +53,9 @@ while true; do
elif [ "x$1" = "x--interpreter" ]; then
run_args="${run_args} --interpreter"
shift
+ elif [ "x$1" = "x--jit" ]; then
+ run_args="${run_args} --jit"
+ shift
elif [ "x$1" = "x--no-verify" ]; then
run_args="${run_args} --no-verify"
shift
@@ -126,7 +129,7 @@ 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 --interpreter --jvm --no-optimize"
+ echo " --debug --dev --host --interpreter --jit --jvm --no-optimize"
echo " --no-verify -O --update --valgrind --zygote --64 --relocate"
echo " --prebuild --always-clean --gcstress --gcverify --trace"
echo " --no-patchoat --no-dex2oat"