summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-03-12 09:58:53 -0700
committerAndreas Gampe <agampe@google.com>2015-03-12 09:58:53 -0700
commitc0bbc88bd5217b6613b30a993931de9256311272 (patch)
tree08b2ef92debdf24e75faa74313df392e5c43f1d1 /tools
parentd304629202eec2ab053a47fc7bcf10223b5ccea4 (diff)
downloadart-c0bbc88bd5217b6613b30a993931de9256311272.zip
art-c0bbc88bd5217b6613b30a993931de9256311272.tar.gz
art-c0bbc88bd5217b6613b30a993931de9256311272.tar.bz2
ART: Allow multiple invoke-with for art script
Just like run-test, allow multiple invoke-with arguments that are chained together. Change-Id: I9f0d2d23fbff1cef32f0bb69e1bb803e157cfb73
Diffstat (limited to 'tools')
-rw-r--r--tools/art2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/art b/tools/art
index 2408f9f..6c89a60 100644
--- a/tools/art
+++ b/tools/art
@@ -45,7 +45,7 @@ LIBART=libart.so
while true; do
if [ "$1" = "--invoke-with" ]; then
shift
- invoke_with="$1"
+ invoke_with="$invoke_with $1"
shift
elif [ "$1" = "-d" ]; then
LIBART="libartd.so"