summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-12-22 18:30:07 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-12-22 18:30:07 +0000
commit5c79aec9d53d1320041d5a52e5115d78d16035b7 (patch)
tree0e36345912571fc0e3e01976f6b698b631706bb7 /test
parent508d2665febbb06c853bfab131c4dc7164fffabb (diff)
parente21dc3db191df04c100620965bee4617b3b24397 (diff)
downloadart-5c79aec9d53d1320041d5a52e5115d78d16035b7.tar.gz
art-5c79aec9d53d1320041d5a52e5115d78d16035b7.tar.bz2
art-5c79aec9d53d1320041d5a52e5115d78d16035b7.zip
Merge "ART: Swap-space in the compiler"
Diffstat (limited to 'test')
-rwxr-xr-xtest/run-test4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/run-test b/test/run-test
index 2abc1fa262..aba4e05d03 100755
--- a/test/run-test
+++ b/test/run-test
@@ -258,6 +258,9 @@ while true; do
elif [ "x$1" = "x--always-clean" ]; then
always_clean="yes"
shift
+ elif [ "x$1" = "x--dex2oat-swap" ]; then
+ run_args="${run_args} --dex2oat-swap"
+ shift
elif expr "x$1" : "x--" >/dev/null 2>&1; then
echo "unknown $0 option: $1" 1>&2
usage="yes"
@@ -452,6 +455,7 @@ if [ "$usage" = "yes" ]; then
echo " --gcverify Run with gc verification"
echo " --always-clean Delete the test files even if the test fails."
echo " --android-root [path] The path on target for the android root. (/system by default)."
+ echo " --dex2oat-swap Use a dex2oat swap file."
) 1>&2
exit 1
fi