summaryrefslogtreecommitdiffstats
path: root/test/run-all-tests
diff options
context:
space:
mode:
authorAlex Light <allight@google.com>2014-08-12 09:53:50 -0700
committerAlex Light <allight@google.com>2014-08-12 09:54:34 -0700
commite7873ecb240aef520f7a7933028fa58708baf761 (patch)
tree591cfce501d3de63d7b6ddfcc8d9c7b311c45274 /test/run-all-tests
parent66386248003a46ecbe4fac99aec902cfd0942847 (diff)
downloadart-e7873ecb240aef520f7a7933028fa58708baf761.tar.gz
art-e7873ecb240aef520f7a7933028fa58708baf761.tar.bz2
art-e7873ecb240aef520f7a7933028fa58708baf761.zip
Added --gcstress and --gcverify shortcut flags to run-test
Change-Id: Ia11fcbc71488710ca32f397c3c1b19613e294d1e
Diffstat (limited to 'test/run-all-tests')
-rwxr-xr-xtest/run-all-tests8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/run-all-tests b/test/run-all-tests
index 284cca0f19..98f1208e2e 100755
--- a/test/run-all-tests
+++ b/test/run-all-tests
@@ -80,6 +80,12 @@ while true; do
elif [ "x$1" = "x--64" ]; then
run_args="${run_args} --64"
shift
+ elif [ "x$1" = "x--gcstress" ]; then
+ run_args="${run_args} --gcstress"
+ shift
+ elif [ "x$1" = "x--gcverify" ]; then
+ run_args="${run_args} --gcverify"
+ shift
elif [ "x$1" = "x--trace" ]; then
run_args="${run_args} --trace"
shift
@@ -116,7 +122,7 @@ if [ "$usage" = "yes" ]; then
"further documentation:"
echo " --debug --dev --host --interpreter --jvm --no-optimize"
echo " --no-verify -O --update --valgrind --zygote --64 --relocate"
- echo " --prebuild --always-clean"
+ echo " --prebuild --always-clean --gcstress --gcverify --trace"
echo " Specific Runtime Options:"
echo " --seq Run tests one-by-one, avoiding failures caused by busy CPU"
) 1>&2