summaryrefslogtreecommitdiffstats
path: root/test/run-all-tests
diff options
context:
space:
mode:
authorSebastien Hertz <shertz@google.com>2014-07-09 15:59:05 +0200
committerSebastien Hertz <shertz@google.com>2014-07-09 15:59:59 +0200
commit07aaac812c5935fc5c4023f843697fc96a42ea87 (patch)
tree79f2b9838385c37fdfa8b8f9bb6fbc8250fcd7db /test/run-all-tests
parent13f89cb9930ea799c21559020da43c3845536da5 (diff)
downloadart-07aaac812c5935fc5c4023f843697fc96a42ea87.zip
art-07aaac812c5935fc5c4023f843697fc96a42ea87.tar.gz
art-07aaac812c5935fc5c4023f843697fc96a42ea87.tar.bz2
Allow method tracing for run-test
Adds "--trace" option to enable method tracing. Bug: 11683397 Change-Id: I20a6b25c71067eafd848db26f13d62cfdb9a6159
Diffstat (limited to 'test/run-all-tests')
-rwxr-xr-xtest/run-all-tests3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/run-all-tests b/test/run-all-tests
index 885ee44..25d5c5f 100755
--- a/test/run-all-tests
+++ b/test/run-all-tests
@@ -80,6 +80,9 @@ while true; do
elif [ "x$1" = "x--64" ]; then
run_args="${run_args} --64"
shift
+ elif [ "x$1" = "x--trace" ]; then
+ run_args="${run_args} --trace"
+ shift
elif expr "x$1" : "x--" >/dev/null 2>&1; then
echo "unknown $0 option: $1" 1>&2
usage="yes"