blob: c6b88dc54ffd489d62f26f71493cd0c84e2665bb [file] [log] [blame]
jeffhao5d1ac922011-09-29 17:41:15 -07001#!/bin/bash
2#
3# Copyright (C) 2007 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# Set up prog to be the path of this script, including following symlinks,
18# and set up progdir to be the fully-qualified pathname of its directory.
19prog="$0"
Andreas Gampedeb48a02014-10-22 00:44:35 -070020args="$@"
jeffhao5d1ac922011-09-29 17:41:15 -070021while [ -h "${prog}" ]; do
22 newProg=`/bin/ls -ld "${prog}"`
23 newProg=`expr "${newProg}" : ".* -> \(.*\)$"`
24 if expr "x${newProg}" : 'x/' >/dev/null; then
25 prog="${newProg}"
26 else
27 progdir=`dirname "${prog}"`
28 prog="${progdir}/${newProg}"
29 fi
30done
31oldwd=`pwd`
32progdir=`dirname "${prog}"`
33cd "${progdir}"
34progdir=`pwd`
35prog="${progdir}"/`basename "${prog}"`
Brian Carlstrom105215d2012-06-14 12:50:44 -070036test_dir="test-$$"
Andreas Gampe5a79fde2014-08-06 13:12:26 -070037if [ -z "$TMPDIR" ]; then
38 tmp_dir="/tmp/$USER/${test_dir}"
39else
Andreas Gampe34a8a0f2016-07-20 21:09:29 -070040 tmp_dir="${TMPDIR}/${test_dir}"
Andreas Gampe5a79fde2014-08-06 13:12:26 -070041fi
David Brazdil2c27f2c2015-05-12 18:06:38 +010042checker="${progdir}/../tools/checker/checker.py"
jeffhao5d1ac922011-09-29 17:41:15 -070043export JAVA="java"
Orion Hodson64fe3be2018-06-15 12:50:22 +010044export JAVAC="javac -g -Xlint:-options -source 1.8 -target 1.8"
Nicolas Geoffray1a58b7f2014-10-06 12:23:04 +010045export RUN="${progdir}/etc/run-test-jar"
Brian Carlstrom105215d2012-06-14 12:50:44 -070046export DEX_LOCATION=/data/run-test/${test_dir}
Elliott Hughesc717eef2012-06-15 16:01:26 -070047export NEED_DEX="true"
Alan Leungcf2de162018-03-30 20:18:20 +000048export USE_D8="true"
Igor Murashkin2a337752017-06-16 14:34:40 +000049export USE_DESUGAR="true"
Ben Gruver14fc9db2017-04-28 15:30:49 -070050export SMALI_ARGS=""
jeffhao5d1ac922011-09-29 17:41:15 -070051
Alan Leungd5cbc562018-03-15 14:02:46 -070052# If d8 was not set by the environment variable, assume it is in the path.
53if [ -z "$D8" ]; then
54 export D8="d8"
55fi
56
Tsu Chiang Chuang4407e612012-07-19 16:13:43 -070057# If dx was not set by the environment variable, assume it is in the path.
58if [ -z "$DX" ]; then
Orion Hodson64fe3be2018-06-15 12:50:22 +010059 export DX="d8-compat-dx"
Tsu Chiang Chuang4407e612012-07-19 16:13:43 -070060fi
61
Orion Hodson64fe3be2018-06-15 12:50:22 +010062export DEXMERGER="$D8"
Alan Leungd5cbc562018-03-15 14:02:46 -070063
Tsu Chiang Chuang6674f8a2013-01-16 15:41:21 -080064# If jasmin was not set by the environment variable, assume it is in the path.
65if [ -z "$JASMIN" ]; then
66 export JASMIN="jasmin"
67fi
68
Andreas Gampe8fda9f22014-10-03 16:15:37 -070069# If smali was not set by the environment variable, assume it is in the path.
70if [ -z "$SMALI" ]; then
71 export SMALI="smali"
72fi
73
Sebastien Hertz19ac0272015-02-24 17:39:50 +010074# ANDROID_BUILD_TOP is not set in a build environment.
75if [ -z "$ANDROID_BUILD_TOP" ]; then
76 export ANDROID_BUILD_TOP=$oldwd
77fi
78
Dan Willemsen12371e92017-03-06 17:55:20 -080079# OUT_DIR defaults to out, and may be relative to $ANDROID_BUILD_TOP.
80# Convert it to an absolute path, since we cd into the tmp_dir to run the tests.
81export OUT_DIR=${OUT_DIR:-out}
82if [[ "$OUT_DIR" != /* ]]; then
83 export OUT_DIR=$ANDROID_BUILD_TOP/$OUT_DIR
84fi
85
Andreas Gampef47fb2f2016-06-24 22:30:29 -070086# ANDROID_HOST_OUT is not set in a build environment.
87if [ -z "$ANDROID_HOST_OUT" ]; then
Dan Willemsen12371e92017-03-06 17:55:20 -080088 export ANDROID_HOST_OUT=${OUT_DIR}/host/linux-x86
Andreas Gampef47fb2f2016-06-24 22:30:29 -070089fi
90
Igor Murashkine5181932017-06-15 16:03:50 -070091# Allow changing DESUGAR script to something else, or to disable it with DESUGAR=false.
Igor Murashkind3232772017-06-22 14:54:13 -070092if [ -z "$DESUGAR" ]; then
Igor Murashkine5181932017-06-15 16:03:50 -070093 export DESUGAR="$ANDROID_BUILD_TOP/art/tools/desugar.sh"
94fi
95
Igor Murashkin271a0f82017-02-14 21:14:17 +000096# Zipalign is not on the PATH in some configs, auto-detect it.
97if [ -z "$ZIPALIGN" ]; then
98 if which zipalign >/dev/null; then
99 ZIPALIGN="zipalign";
100 else
101 # TODO: Add a dependency for zipalign in Android.run-test.mk
102 # once it doesn't depend on libandroidfw (b/35246701)
103 case "$OSTYPE" in
104 darwin*) ZIPALIGN="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/darwin/bin/zipalign" ;;
105 linux*) ZIPALIGN="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/linux/bin/zipalign" ;;
106 *) echo "Can't find zipalign: unknown: $OSTYPE" >&2;;
107 esac
108 fi
109fi
110export ZIPALIGN
111
David Brazdil122c6632018-01-24 17:32:49 +0000112# If hiddenapi was not set by the environment variable, assume it is in
113# ANDROID_HOST_OUT.
David Brazdil11b67b22018-01-18 16:41:40 +0000114if [ -z "$HIDDENAPI" ]; then
David Brazdil122c6632018-01-24 17:32:49 +0000115 export HIDDENAPI="${ANDROID_HOST_OUT}/bin/hiddenapi"
David Brazdil11b67b22018-01-18 16:41:40 +0000116fi
117
Roland Levillain76cfe612017-10-30 13:14:28 +0000118chroot=
119
jeffhao5d1ac922011-09-29 17:41:15 -0700120info="info.txt"
121build="build"
122run="run"
123expected="expected.txt"
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700124check_cmd="check"
jeffhao5d1ac922011-09-29 17:41:15 -0700125output="output.txt"
126build_output="build-output.txt"
David Brazdil24128c62015-05-21 12:06:13 +0100127cfg_output="graph.cfg"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700128strace_output="strace-output.txt"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700129lib="libartd.so"
Mathieu Chartier031768a2015-08-27 10:25:02 -0700130testlib="arttestd"
jeffhao5d1ac922011-09-29 17:41:15 -0700131run_args="--quiet"
David Brazdil4846d132015-01-15 19:07:08 +0000132build_args=""
jeffhao5d1ac922011-09-29 17:41:15 -0700133
Alex Light91de25f2015-10-28 17:00:06 -0700134quiet="no"
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000135debuggable="no"
Alex Light9d722532014-07-22 18:07:12 -0700136prebuild_mode="yes"
Brian Carlstrom2613de42012-06-15 17:37:16 -0700137target_mode="yes"
jeffhao5d1ac922011-09-29 17:41:15 -0700138dev_mode="no"
139update_mode="no"
Alex Lighta59dd802014-07-02 16:28:08 -0700140debug_mode="no"
Nicolas Geoffray94e25db2017-01-27 14:54:28 +0000141relocate="no"
Jeff Hao201803f2013-11-20 18:11:39 -0800142runtime="art"
jeffhao5d1ac922011-09-29 17:41:15 -0700143usage="no"
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700144build_only="no"
Andreas Gampe2fe07922014-04-21 07:50:39 -0700145suffix64=""
Jeff Hao85139a32014-07-23 11:52:52 -0700146trace="false"
Andreas Gampe7526d782015-06-22 22:53:45 -0700147trace_stream="false"
Alex Lighte7873ec2014-08-12 09:53:50 -0700148basic_verify="false"
149gc_verify="false"
150gc_stress="false"
Alex Lightb7edcda2017-04-27 13:20:31 -0700151jvmti_trace_stress="false"
Alex Light43e935d2017-06-19 15:40:40 -0700152jvmti_field_stress="false"
Alex Lightc38c3692017-06-27 15:45:14 -0700153jvmti_step_stress="false"
Alex Lightb7edcda2017-04-27 13:20:31 -0700154jvmti_redefine_stress="false"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700155strace="false"
Alex Lightbfac14a2014-07-30 09:41:21 -0700156always_clean="no"
Igor Murashkin05f30e12015-06-10 15:57:17 -0700157never_clean="no"
Alex Light03a112d2014-08-25 13:25:56 -0700158have_image="yes"
Jeff Haodcdc85b2015-12-04 14:06:18 -0800159multi_image_suffix=""
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000160android_root="/system"
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700161bisection_search="no"
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800162suspend_timeout="500000"
Nicolas Geoffrayb76bc782016-09-14 12:33:34 +0000163image_suffix=""
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100164run_optimizing="false"
jeffhao5d1ac922011-09-29 17:41:15 -0700165
166while true; do
167 if [ "x$1" = "x--host" ]; then
Brian Carlstrom2613de42012-06-15 17:37:16 -0700168 target_mode="no"
TDYa127b92bcab2012-04-08 00:09:51 -0700169 DEX_LOCATION=$tmp_dir
Nicolas Geoffray1a58b7f2014-10-06 12:23:04 +0100170 run_args="${run_args} --host"
jeffhao5d1ac922011-09-29 17:41:15 -0700171 shift
Alex Light91de25f2015-10-28 17:00:06 -0700172 elif [ "x$1" = "x--quiet" ]; then
173 quiet="yes"
174 shift
Alex Lighteb7c1442015-08-31 13:17:42 -0700175 elif [ "x$1" = "x--use-java-home" ]; then
176 if [ -n "${JAVA_HOME}" ]; then
177 export JAVA="${JAVA_HOME}/bin/java"
178 export JAVAC="${JAVA_HOME}/bin/javac -g"
179 else
180 echo "Passed --use-java-home without JAVA_HOME variable set!"
181 usage="yes"
182 fi
183 shift
Elliott Hughes58bcc402012-02-14 14:10:10 -0800184 elif [ "x$1" = "x--jvm" ]; then
Brian Carlstrom2613de42012-06-15 17:37:16 -0700185 target_mode="no"
Alex Light2c7aaeb2017-01-27 14:08:17 -0800186 DEX_LOCATION="$tmp_dir"
Jeff Hao201803f2013-11-20 18:11:39 -0800187 runtime="jvm"
Brian Carlstrom01afdba2014-10-03 10:28:47 -0700188 prebuild_mode="no"
Elliott Hughesc717eef2012-06-15 16:01:26 -0700189 NEED_DEX="false"
Nicolas Geoffray288a4a22014-10-07 11:02:40 +0100190 run_args="${run_args} --jvm"
jeffhao5d1ac922011-09-29 17:41:15 -0700191 shift
Elliott Hughes58bcc402012-02-14 14:10:10 -0800192 elif [ "x$1" = "x-O" ]; then
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700193 lib="libart.so"
Mathieu Chartier031768a2015-08-27 10:25:02 -0700194 testlib="arttest"
Alex Lightfaf90b62016-08-12 14:43:48 -0700195 run_args="${run_args} -O"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700196 shift
197 elif [ "x$1" = "x--dalvik" ]; then
198 lib="libdvm.so"
Jeff Hao201803f2013-11-20 18:11:39 -0800199 runtime="dalvik"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700200 shift
Alex Light03a112d2014-08-25 13:25:56 -0700201 elif [ "x$1" = "x--no-image" ]; then
202 have_image="no"
203 shift
Jeff Haodcdc85b2015-12-04 14:06:18 -0800204 elif [ "x$1" = "x--multi-image" ]; then
205 multi_image_suffix="-multi"
206 shift
Alex Lighta59dd802014-07-02 16:28:08 -0700207 elif [ "x$1" = "x--relocate" ]; then
208 relocate="yes"
209 shift
210 elif [ "x$1" = "x--no-relocate" ]; then
211 relocate="no"
212 shift
213 elif [ "x$1" = "x--prebuild" ]; then
Nicolas Geoffray5fd18ba2014-10-03 12:08:38 +0100214 run_args="${run_args} --prebuild"
Alex Lighta59dd802014-07-02 16:28:08 -0700215 prebuild_mode="yes"
216 shift;
Mathieu Chartierdcd56c92017-11-20 20:30:24 -0800217 elif [ "x$1" = "x--compact-dex-level" ]; then
218 option="$1"
219 shift
220 run_args="${run_args} $option $1"
221 shift;
Richard Uhler76f5cb62016-04-04 13:30:16 -0700222 elif [ "x$1" = "x--strip-dex" ]; then
223 run_args="${run_args} --strip-dex"
224 shift;
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000225 elif [ "x$1" = "x--debuggable" ]; then
226 run_args="${run_args} -Xcompiler-option --debuggable"
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000227 debuggable="yes"
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000228 shift;
Alex Lighta59dd802014-07-02 16:28:08 -0700229 elif [ "x$1" = "x--no-prebuild" ]; then
Nicolas Geoffray5fd18ba2014-10-03 12:08:38 +0100230 run_args="${run_args} --no-prebuild"
Alex Lighta59dd802014-07-02 16:28:08 -0700231 prebuild_mode="no"
232 shift;
Alex Lighte7873ec2014-08-12 09:53:50 -0700233 elif [ "x$1" = "x--gcverify" ]; then
234 basic_verify="true"
235 gc_verify="true"
236 shift
237 elif [ "x$1" = "x--gcstress" ]; then
238 basic_verify="true"
239 gc_stress="true"
240 shift
Alex Lightc38c3692017-06-27 15:45:14 -0700241 elif [ "x$1" = "x--jvmti-step-stress" ]; then
242 jvmti_step_stress="true"
243 shift
Alex Lightb7edcda2017-04-27 13:20:31 -0700244 elif [ "x$1" = "x--jvmti-redefine-stress" ]; then
245 jvmti_redefine_stress="true"
246 shift
Alex Light43e935d2017-06-19 15:40:40 -0700247 elif [ "x$1" = "x--jvmti-field-stress" ]; then
248 jvmti_field_stress="true"
249 shift
Alex Lightb7edcda2017-04-27 13:20:31 -0700250 elif [ "x$1" = "x--jvmti-trace-stress" ]; then
251 jvmti_trace_stress="true"
Alex Light8f2c6d42017-04-10 16:27:35 -0700252 shift
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800253 elif [ "x$1" = "x--suspend-timeout" ]; then
254 shift
255 suspend_timeout="$1"
256 shift
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700257 elif [ "x$1" = "x--image" ]; then
258 shift
259 image="$1"
260 run_args="${run_args} --image $image"
Elliott Hughes7c046102011-10-19 18:16:03 -0700261 shift
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000262 elif [ "x$1" = "x-Xcompiler-option" ]; then
263 shift
264 option="$1"
265 run_args="${run_args} -Xcompiler-option $option"
266 shift
Orion Hodsone1fb77f2017-02-27 13:57:18 +0000267 elif [ "x$1" = "x--build-option" ]; then
268 shift
269 option="$1"
270 build_args="${build_args} $option"
271 shift
Mathieu Chartier769a5ad2014-05-18 15:30:10 -0700272 elif [ "x$1" = "x--runtime-option" ]; then
273 shift
274 option="$1"
275 run_args="${run_args} --runtime-option $option"
276 shift
Mathieu Chartierc0a8a802014-10-17 15:58:01 -0700277 elif [ "x$1" = "x--gdb-arg" ]; then
278 shift
279 gdb_arg="$1"
280 run_args="${run_args} --gdb-arg $gdb_arg"
281 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700282 elif [ "x$1" = "x--debug" ]; then
283 run_args="${run_args} --debug"
284 shift
Alex Lightc281ba52017-10-11 11:35:55 -0700285 elif [ "x$1" = "x--debug-wrap-agent" ]; then
286 run_args="${run_args} --debug-wrap-agent"
287 shift
Alex Light0e151e72017-10-25 10:50:35 -0700288 elif [ "x$1" = "x--with-agent" ]; then
289 shift
290 option="$1"
291 run_args="${run_args} --with-agent $1"
292 shift
Alex Lightc281ba52017-10-11 11:35:55 -0700293 elif [ "x$1" = "x--debug-agent" ]; then
294 shift
295 option="$1"
296 run_args="${run_args} --debug-agent $1"
297 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700298 elif [ "x$1" = "x--gdb" ]; then
299 run_args="${run_args} --gdb"
300 dev_mode="yes"
301 shift
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700302 elif [ "x$1" = "x--strace" ]; then
303 strace="yes"
Mathieu Chartier2576be22016-05-24 10:24:53 -0700304 run_args="${run_args} --timeout 1800 --invoke-with strace --invoke-with -o --invoke-with $tmp_dir/$strace_output"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700305 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700306 elif [ "x$1" = "x--zygote" ]; then
307 run_args="${run_args} --zygote"
308 shift
jeffhao0dff3f42012-11-20 15:13:43 -0800309 elif [ "x$1" = "x--interpreter" ]; then
Nicolas Geoffray4650c932016-05-10 09:13:13 +0000310 run_args="${run_args} --interpreter"
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700311 image_suffix="-interpreter"
312 shift
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800313 elif [ "x$1" = "x--jit" ]; then
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100314 run_args="${run_args} --jit"
Nicolas Geoffrayb76bc782016-09-14 12:33:34 +0000315 image_suffix="-interpreter"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800316 shift
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100317 elif [ "x$1" = "x--baseline" ]; then
318 run_args="${run_args} --baseline"
319 shift
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700320 elif [ "x$1" = "x--optimizing" ]; then
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100321 run_optimizing="true"
jeffhao0dff3f42012-11-20 15:13:43 -0800322 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700323 elif [ "x$1" = "x--no-verify" ]; then
Richard Uhlerf4b34872016-04-13 11:03:46 -0700324 run_args="${run_args} --no-verify"
jeffhao5d1ac922011-09-29 17:41:15 -0700325 shift
Igor Murashkin7617abd2015-07-10 18:27:47 -0700326 elif [ "x$1" = "x--verify-soft-fail" ]; then
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100327 run_args="${run_args} --verify-soft-fail"
Andreas Gampe825570c2015-07-26 10:26:03 -0700328 image_suffix="-interp-ac"
Igor Murashkin7617abd2015-07-10 18:27:47 -0700329 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700330 elif [ "x$1" = "x--no-optimize" ]; then
331 run_args="${run_args} --no-optimize"
332 shift
333 elif [ "x$1" = "x--no-precise" ]; then
334 run_args="${run_args} --no-precise"
335 shift
Elliott Hughes7c046102011-10-19 18:16:03 -0700336 elif [ "x$1" = "x--invoke-with" ]; then
337 shift
338 what="$1"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700339 if [ "x$what" = "x" ]; then
340 echo "$0 missing argument to --invoke-with" 1>&2
341 usage="yes"
342 break
343 fi
Ian Rogers0e033672013-04-19 10:22:46 -0700344 run_args="${run_args} --invoke-with ${what}"
jeffhao5d1ac922011-09-29 17:41:15 -0700345 shift
346 elif [ "x$1" = "x--dev" ]; then
347 run_args="${run_args} --dev"
348 dev_mode="yes"
349 shift
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700350 elif [ "x$1" = "x--build-only" ]; then
351 build_only="yes"
352 shift
353 elif [ "x$1" = "x--output-path" ]; then
354 shift
355 tmp_dir=$1
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700356 if [ "x$tmp_dir" = "x" ]; then
357 echo "$0 missing argument to --output-path" 1>&2
358 usage="yes"
359 break
360 fi
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700361 shift
Roland Levillain76cfe612017-10-30 13:14:28 +0000362 elif [ "x$1" = "x--chroot" ]; then
363 shift
364 if [ "x$1" = "x" ]; then
365 echo "$0 missing argument to --chroot" 1>&2
366 usage="yes"
367 break
368 fi
369 chroot="$1"
370 run_args="${run_args} --chroot $1"
371 shift
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000372 elif [ "x$1" = "x--android-root" ]; then
373 shift
374 if [ "x$1" = "x" ]; then
375 echo "$0 missing argument to --android-root" 1>&2
376 usage="yes"
377 break
378 fi
379 android_root="$1"
380 run_args="${run_args} --android-root $1"
381 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700382 elif [ "x$1" = "x--update" ]; then
383 update_mode="yes"
384 shift
385 elif [ "x$1" = "x--help" ]; then
386 usage="yes"
387 shift
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700388 elif [ "x$1" = "x--64" ]; then
389 run_args="${run_args} --64"
Andreas Gampe2fe07922014-04-21 07:50:39 -0700390 suffix64="64"
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700391 shift
Sebastien Hertz07aaac82014-07-09 15:59:05 +0200392 elif [ "x$1" = "x--trace" ]; then
Jeff Hao85139a32014-07-23 11:52:52 -0700393 trace="true"
Sebastien Hertz07aaac82014-07-09 15:59:05 +0200394 shift
Andreas Gampe7526d782015-06-22 22:53:45 -0700395 elif [ "x$1" = "x--stream" ]; then
396 trace_stream="true"
397 shift
Alex Lightbfac14a2014-07-30 09:41:21 -0700398 elif [ "x$1" = "x--always-clean" ]; then
399 always_clean="yes"
400 shift
Igor Murashkin05f30e12015-06-10 15:57:17 -0700401 elif [ "x$1" = "x--never-clean" ]; then
402 never_clean="yes"
403 shift
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800404 elif [ "x$1" = "x--dex2oat-swap" ]; then
405 run_args="${run_args} --dex2oat-swap"
406 shift
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700407 elif [ "x$1" = "x--instruction-set-features" ]; then
408 shift
409 run_args="${run_args} --instruction-set-features $1"
410 shift
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700411 elif [ "x$1" = "x--bisection-search" ]; then
412 bisection_search="yes"
413 shift
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000414 elif [ "x$1" = "x--vdex" ]; then
415 run_args="${run_args} --vdex"
416 shift
Nicolas Geoffraybaeaa9b2018-01-26 14:31:17 +0000417 elif [ "x$1" = "x--dm" ]; then
418 run_args="${run_args} --dm"
419 shift
Nicolas Geoffray74981052017-01-16 17:54:09 +0000420 elif [ "x$1" = "x--vdex-filter" ]; then
421 shift
422 filter=$1
423 run_args="${run_args} --vdex-filter $filter"
424 shift
Jeff Hao002b9312017-03-27 16:23:08 -0700425 elif [ "x$1" = "x--random-profile" ]; then
426 run_args="${run_args} --random-profile"
427 shift
Shubham Ajmera981d99c2017-08-17 14:11:08 -0700428 elif [ "x$1" = "x--dex2oat-jobs" ]; then
429 shift
430 run_args="${run_args} -Xcompiler-option -j$1"
431 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700432 elif expr "x$1" : "x--" >/dev/null 2>&1; then
Elliott Hughes7c046102011-10-19 18:16:03 -0700433 echo "unknown $0 option: $1" 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700434 usage="yes"
435 break
436 else
437 break
438 fi
439done
Andreas Gampe3a12cfe2014-08-13 15:40:22 -0700440
Orion Hodson6aa4e0d2018-05-25 09:39:16 +0100441if [ "$usage" = "no" -a "x$1" = "x" ]; then
442 echo "missing test to run" 1>&2
443 usage="yes"
444fi
445
Roland Levillain76cfe612017-10-30 13:14:28 +0000446# The DEX_LOCATION with the chroot prefix, if any.
447chroot_dex_location="$chroot$DEX_LOCATION"
448
Alex Light91de25f2015-10-28 17:00:06 -0700449# Allocate file descriptor real_stderr and redirect it to the shell's error
450# output (fd 2).
451if [ ${BASH_VERSINFO[1]} -ge 4 ] && [ ${BASH_VERSINFO[2]} -ge 1 ]; then
452 exec {real_stderr}>&2
453else
454 # In bash before version 4.1 we need to do a manual search for free file
455 # descriptors.
456 FD=3
457 while [ -e /dev/fd/$FD ]; do FD=$((FD + 1)); done
458 real_stderr=$FD
459 eval "exec ${real_stderr}>&2"
460fi
461if [ "$quiet" = "yes" ]; then
462 # Force the default standard output and error to go to /dev/null so we will
463 # not print them.
464 exec 1>/dev/null
465 exec 2>/dev/null
466fi
467
468function err_echo() {
469 echo "$@" 1>&${real_stderr}
470}
471
Andreas Gampe3a12cfe2014-08-13 15:40:22 -0700472# tmp_dir may be relative, resolve.
473#
474# Cannot use realpath, as it does not exist on Mac.
Roland Levillain76cfe612017-10-30 13:14:28 +0000475# Cannot use a simple "cd", as the path might not be created yet.
Brian Carlstromc580e042014-09-08 21:37:39 -0700476# Cannot use readlink -m, as it does not exist on Mac.
477# Fallback to nuclear option:
Andreas Gampe907b6992014-08-18 22:26:49 -0700478noncanonical_tmp_dir=$tmp_dir
Brian Carlstromc580e042014-09-08 21:37:39 -0700479tmp_dir="`cd $oldwd ; python -c "import os; print os.path.realpath('$tmp_dir')"`"
Dmitry Petrochenko81c56e72014-03-05 15:05:46 +0700480mkdir -p $tmp_dir
jeffhao5d1ac922011-09-29 17:41:15 -0700481
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800482# Add thread suspend timeout flag
Narayan Kamathf86c3932017-01-24 17:40:47 +0000483if [ ! "$runtime" = "jvm" ]; then
484 run_args="${run_args} --runtime-option -XX:ThreadSuspendTimeout=$suspend_timeout"
485fi
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800486
Alex Lighte7873ec2014-08-12 09:53:50 -0700487if [ "$basic_verify" = "true" ]; then
Hiroshi Yamauchi312baf12015-01-12 12:11:05 -0800488 # Set HspaceCompactForOOMMinIntervalMs to zero to run hspace compaction for OOM more frequently in tests.
489 run_args="${run_args} --runtime-option -Xgc:preverify --runtime-option -Xgc:postverify --runtime-option -XX:HspaceCompactForOOMMinIntervalMs=0"
Alex Lighte7873ec2014-08-12 09:53:50 -0700490fi
491if [ "$gc_verify" = "true" ]; then
492 run_args="${run_args} --runtime-option -Xgc:preverify_rosalloc --runtime-option -Xgc:postverify_rosalloc"
493fi
494if [ "$gc_stress" = "true" ]; then
Mathieu Chartierd9eb2842016-08-12 16:11:24 -0700495 run_args="${run_args} --gc-stress --runtime-option -Xgc:gcstress --runtime-option -Xms2m --runtime-option -Xmx16m"
Alex Lighte7873ec2014-08-12 09:53:50 -0700496fi
Alex Lightb7edcda2017-04-27 13:20:31 -0700497if [ "$jvmti_redefine_stress" = "true" ]; then
498 run_args="${run_args} --no-app-image --jvmti-redefine-stress"
499fi
Alex Lightc38c3692017-06-27 15:45:14 -0700500if [ "$jvmti_step_stress" = "true" ]; then
501 run_args="${run_args} --no-app-image --jvmti-step-stress"
502fi
Alex Light43e935d2017-06-19 15:40:40 -0700503if [ "$jvmti_field_stress" = "true" ]; then
504 run_args="${run_args} --no-app-image --jvmti-field-stress"
505fi
Alex Lightb7edcda2017-04-27 13:20:31 -0700506if [ "$jvmti_trace_stress" = "true" ]; then
507 run_args="${run_args} --no-app-image --jvmti-trace-stress"
Alex Light8f2c6d42017-04-10 16:27:35 -0700508fi
Jeff Hao85139a32014-07-23 11:52:52 -0700509if [ "$trace" = "true" ]; then
Andreas Gampe7526d782015-06-22 22:53:45 -0700510 run_args="${run_args} --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file-size:2000000"
511 if [ "$trace_stream" = "true" ]; then
512 # Streaming mode uses the file size as the buffer size. So output gets really large. Drop
513 # the ability to analyze the file and just write to /dev/null.
514 run_args="${run_args} --runtime-option -Xmethod-trace-file:/dev/null"
515 # Enable streaming mode.
516 run_args="${run_args} --runtime-option -Xmethod-trace-stream"
517 else
518 run_args="${run_args} --runtime-option -Xmethod-trace-file:${DEX_LOCATION}/trace.bin"
519 fi
520elif [ "$trace_stream" = "true" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700521 err_echo "Cannot use --stream without --trace."
Andreas Gampe7526d782015-06-22 22:53:45 -0700522 exit 1
Jeff Hao85139a32014-07-23 11:52:52 -0700523fi
524
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700525# Most interesting target architecture variables are Makefile variables, not environment variables.
Nicolas Geoffray93d68462018-01-02 11:59:45 +0000526# Try to map the suffix64 flag and what we find in ${ANDROID_PRODUCT_OUT}/data/art-test to an architecture name.
David Brazdil853a4c32015-09-28 16:15:50 +0100527function guess_target_arch_name() {
Andreas Gamped0566d42018-06-06 09:54:34 -0700528 # Check whether this is a device with native bridge. Currently this is hardcoded
529 # to x86 + arm.
530 x86_arm=`ls ${ANDROID_PRODUCT_OUT}/data/art-test | sort | grep -E '^(arm|x86)$'`
531 # Collapse line-breaks into spaces
532 x86_arm=$(echo $x86_arm)
533 if [ "x$x86_arm" = "xarm x86" ] ; then
534 err_echo "Native-bridge configuration detected."
535 # We only support the main arch for tests.
536 if [ "x${suffix64}" = "x64" ]; then
537 target_arch_name=""
538 else
539 target_arch_name=x86
540 fi
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700541 else
Andreas Gamped0566d42018-06-06 09:54:34 -0700542 grep32bit=`ls ${ANDROID_PRODUCT_OUT}/data/art-test | grep -E '^(arm|x86|mips)$'`
543 grep64bit=`ls ${ANDROID_PRODUCT_OUT}/data/art-test | grep -E '^(arm64|x86_64|mips64)$'`
544 if [ "x${suffix64}" = "x64" ]; then
545 target_arch_name=${grep64bit}
546 else
547 target_arch_name=${grep32bit}
548 fi
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700549 fi
550}
551
David Brazdil853a4c32015-09-28 16:15:50 +0100552function guess_host_arch_name() {
553 if [ "x${suffix64}" = "x64" ]; then
554 host_arch_name="x86_64"
555 else
556 host_arch_name="x86"
557 fi
558}
559
Alex Lighta59dd802014-07-02 16:28:08 -0700560if [ "$target_mode" = "no" ]; then
561 if [ "$runtime" = "jvm" ]; then
Alex Lighta59dd802014-07-02 16:28:08 -0700562 if [ "$prebuild_mode" = "yes" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700563 err_echo "--prebuild with --jvm is unsupported"
Roland Levillain76cfe612017-10-30 13:14:28 +0000564 exit 1
565 fi
566 else
567 # ART/Dalvik host mode.
568 if [ -n "$chroot" ]; then
569 err_echo "--chroot with --host is unsupported"
570 exit 1
Alex Lighta59dd802014-07-02 16:28:08 -0700571 fi
Alex Lighta59dd802014-07-02 16:28:08 -0700572 fi
573fi
574
Jeff Hao201803f2013-11-20 18:11:39 -0800575if [ ! "$runtime" = "jvm" ]; then
576 run_args="${run_args} --lib $lib"
577fi
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700578
Jeff Hao201803f2013-11-20 18:11:39 -0800579if [ "$runtime" = "dalvik" ]; then
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700580 if [ "$target_mode" = "no" ]; then
Nicolas Geoffray93d68462018-01-02 11:59:45 +0000581 framework="${ANDROID_PRODUCT_OUT}/system/framework"
Andreas Gampe50be66f2015-12-28 14:31:06 -0800582 bpath="${framework}/core-libart.jar:${framework}/core-oj.jar:${framework}/conscrypt.jar:${framework}/okhttp.jar:${framework}/bouncycastle.jar:${framework}/ext.jar"
Richard Uhler76f5cb62016-04-04 13:30:16 -0700583 run_args="${run_args} --boot --runtime-option -Xbootclasspath:${bpath}"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700584 else
585 true # defaults to using target BOOTCLASSPATH
586 fi
Jeff Hao201803f2013-11-20 18:11:39 -0800587elif [ "$runtime" = "art" ]; then
588 if [ "$target_mode" = "no" ]; then
David Brazdil853a4c32015-09-28 16:15:50 +0100589 guess_host_arch_name
Richard Uhlerbb00f812017-02-16 14:21:10 +0000590 run_args="${run_args} --boot ${ANDROID_HOST_OUT}/framework/core${image_suffix}${multi_image_suffix}.art"
Colin Crossafd3c9e2016-09-16 13:47:21 -0700591 run_args="${run_args} --runtime-option -Djava.library.path=${ANDROID_HOST_OUT}/lib${suffix64}:${ANDROID_HOST_OUT}/nativetest${suffix64}"
Jeff Hao201803f2013-11-20 18:11:39 -0800592 else
David Brazdil853a4c32015-09-28 16:15:50 +0100593 guess_target_arch_name
Dimitry Ivanov49c2c922017-02-14 11:06:14 -0800594 run_args="${run_args} --runtime-option -Djava.library.path=/data/nativetest${suffix64}/art/${target_arch_name}"
Richard Uhlerbb00f812017-02-16 14:21:10 +0000595 run_args="${run_args} --boot /data/art-test/core${image_suffix}${multi_image_suffix}.art"
Jeff Hao201803f2013-11-20 18:11:39 -0800596 fi
Alex Lighta59dd802014-07-02 16:28:08 -0700597 if [ "$relocate" = "yes" ]; then
598 run_args="${run_args} --relocate"
599 else
600 run_args="${run_args} --no-relocate"
601 fi
Andreas Gampe3f1dc562015-05-18 15:52:22 -0700602elif [ "$runtime" = "jvm" ]; then
603 # TODO: Detect whether the host is 32-bit or 64-bit.
Alex Lightfba89fe2017-01-12 16:11:02 -0800604 run_args="${run_args} --runtime-option -Djava.library.path=${ANDROID_HOST_OUT}/lib64:${ANDROID_HOST_OUT}/nativetest64"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700605fi
606
Alex Light03a112d2014-08-25 13:25:56 -0700607if [ "$have_image" = "no" ]; then
Alex Light1ef4ce82014-08-27 11:13:47 -0700608 if [ "$runtime" != "art" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700609 err_echo "--no-image is only supported on the art runtime"
Alex Light1ef4ce82014-08-27 11:13:47 -0700610 exit 1
611 fi
Alex Light03a112d2014-08-25 13:25:56 -0700612 run_args="${run_args} --no-image"
613fi
614
jeffhao5d1ac922011-09-29 17:41:15 -0700615if [ "$dev_mode" = "yes" -a "$update_mode" = "yes" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700616 err_echo "--dev and --update are mutually exclusive"
617 usage="yes"
618fi
619
620if [ "$dev_mode" = "yes" -a "$quiet" = "yes" ]; then
621 err_echo "--dev and --quiet are mutually exclusive"
jeffhao5d1ac922011-09-29 17:41:15 -0700622 usage="yes"
623fi
624
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700625if [ "$bisection_search" = "yes" -a "$prebuild_mode" = "yes" ]; then
626 err_echo "--bisection-search and --prebuild are mutually exclusive"
627 usage="yes"
628fi
629
Roland Levillain76cfe612017-10-30 13:14:28 +0000630# TODO: Chroot-based bisection search is not supported yet (see below); implement it.
631if [ "$bisection_search" = "yes" -a -n "$chroot" ]; then
632 err_echo "--chroot with --bisection-search is unsupported"
633 exit 1
634fi
635
jeffhao5d1ac922011-09-29 17:41:15 -0700636if [ "$usage" = "no" ]; then
637 if [ "x$1" = "x" -o "x$1" = "x-" ]; then
638 test_dir=`basename "$oldwd"`
639 else
640 test_dir="$1"
641 fi
642
643 if [ '!' -d "$test_dir" ]; then
644 td2=`echo ${test_dir}-*`
645 if [ '!' -d "$td2" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700646 err_echo "${test_dir}: no such test directory"
jeffhao5d1ac922011-09-29 17:41:15 -0700647 usage="yes"
648 fi
649 test_dir="$td2"
650 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700651 # Shift to get rid of the test name argument. The rest of the arguments
652 # will get passed to the test run.
653 shift
654fi
655
656if [ "$usage" = "yes" ]; then
657 prog=`basename $prog`
658 (
659 echo "usage:"
660 echo " $prog --help Print this message."
661 echo " $prog [options] [test-name] Run test normally."
662 echo " $prog --dev [options] [test-name] Development mode" \
663 "(dumps to stdout)."
664 echo " $prog --update [options] [test-name] Update mode" \
665 "(replaces expected.txt)."
666 echo ' Omitting the test name or specifying "-" will use the' \
667 "current directory."
668 echo " Runtime Options:"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000669 echo " -O Run non-debug rather than debug build (off by default)."
670 echo " -Xcompiler-option Pass an option to the compiler."
Orion Hodsone1fb77f2017-02-27 13:57:18 +0000671 echo " --build-option Pass an option to the build script."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000672 echo " --runtime-option Pass an option to the runtime."
Mathieu Chartierdcd56c92017-11-20 20:30:24 -0800673 echo " --compact-dex-level Specify a compact dex level to the compiler."
Alex Lightc281ba52017-10-11 11:35:55 -0700674 echo " --debug Wait for the default debugger to attach."
675 echo " --debug-agent <agent-path>"
676 echo " Wait for the given debugger agent to attach. Currently"
677 echo " only supported on host."
678 echo " --debug-wrap-agent use libwrapagentproperties and tools/libjdwp-compat.props"
679 echo " to load the debugger agent specified by --debug-agent."
Alex Light0e151e72017-10-25 10:50:35 -0700680 echo " --with-agent <agent> Run the test with the given agent loaded with -agentpath:"
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000681 echo " --debuggable Whether to compile Java code for a debugger."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000682 echo " --gdb Run under gdb; incompatible with some tests."
Alex Lightfadfee92015-10-28 09:40:10 -0700683 echo " --gdb-arg Pass an option to gdb."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000684 echo " --build-only Build test files only (off by default)."
685 echo " --interpreter Enable interpreter only mode (off by default)."
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800686 echo " --jit Enable jit (off by default)."
Nicolas Geoffray0e071252015-03-21 13:43:15 +0000687 echo " --optimizing Enable optimizing compiler (default)."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000688 echo " --no-verify Turn off verification (on by default)."
Igor Murashkin7617abd2015-07-10 18:27:47 -0700689 echo " --verify-soft-fail Force soft fail verification (off by default)."
690 echo " Verification is enabled if neither --no-verify"
691 echo " nor --verify-soft-fail is specified."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000692 echo " --no-optimize Turn off optimization (on by default)."
693 echo " --no-precise Turn off precise GC (on by default)."
694 echo " --zygote Spawn the process from the Zygote." \
jeffhao5d1ac922011-09-29 17:41:15 -0700695 "If used, then the"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000696 echo " other runtime options are ignored."
697 echo " --no-dex2oat Run as though dex2oat was failing."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000698 echo " --prebuild Run dex2oat on the files before starting test. (default)"
699 echo " --no-prebuild Do not run dex2oat on the files before starting"
700 echo " the test."
Richard Uhler76f5cb62016-04-04 13:30:16 -0700701 echo " --strip-dex Strip the dex files before starting test."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000702 echo " --relocate Force the use of relocating in the test, making"
703 echo " the image and oat files be relocated to a random"
Nicolas Geoffray94e25db2017-01-27 14:54:28 +0000704 echo " address before running."
705 echo " --no-relocate Force the use of no relocating in the test. (default)"
Alex Lightfadfee92015-10-28 09:40:10 -0700706 echo " --image Run the test using a precompiled boot image. (default)"
707 echo " --no-image Run the test without a precompiled boot image."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000708 echo " --host Use the host-mode virtual machine."
709 echo " --invoke-with Pass --invoke-with option to runtime."
710 echo " --dalvik Use Dalvik (off by default)."
711 echo " --jvm Use a host-local RI virtual machine."
Alex Lighteb7c1442015-08-31 13:17:42 -0700712 echo " --use-java-home Use the JAVA_HOME environment variable"
713 echo " to find the java compiler and runtime"
714 echo " (if applicable) to run the test with."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000715 echo " --output-path [path] Location where to store the build" \
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700716 "files."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000717 echo " --64 Run the test in 64-bit mode"
718 echo " --trace Run with method tracing"
Alex Lightfadfee92015-10-28 09:40:10 -0700719 echo " --strace Run with syscall tracing from strace."
Andreas Gampe7526d782015-06-22 22:53:45 -0700720 echo " --stream Run method tracing in streaming mode (requires --trace)"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000721 echo " --gcstress Run with gc stress testing"
722 echo " --gcverify Run with gc verification"
Alex Lightb7edcda2017-04-27 13:20:31 -0700723 echo " --jvmti-trace-stress Run with jvmti method tracing stress testing"
Alex Lightc38c3692017-06-27 15:45:14 -0700724 echo " --jvmti-step-stress Run with jvmti single step stress testing"
Alex Lightb7edcda2017-04-27 13:20:31 -0700725 echo " --jvmti-redefine-stress"
726 echo " Run with jvmti method redefinition stress testing"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000727 echo " --always-clean Delete the test files even if the test fails."
Igor Murashkin05f30e12015-06-10 15:57:17 -0700728 echo " --never-clean Keep the test files even if the test succeeds."
Roland Levillain76cfe612017-10-30 13:14:28 +0000729 echo " --chroot [newroot] Run with root directory set to newroot."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000730 echo " --android-root [path] The path on target for the android root. (/system by default)."
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000731 echo " --dex2oat-swap Use a dex2oat swap file."
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700732 echo " --instruction-set-features [string]"
733 echo " Set instruction-set-features for compilation."
Jeff Haodcdc85b2015-12-04 14:06:18 -0800734 echo " --multi-image Use a set of images compiled with dex2oat multi-image for"
735 echo " the boot class path."
Alex Light91de25f2015-10-28 17:00:06 -0700736 echo " --quiet Don't print anything except failure messages"
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700737 echo " --bisection-search Perform bisection bug search."
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000738 echo " --vdex Test using vdex as in input to dex2oat. Only works with --prebuild."
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800739 echo " --suspend-timeout Change thread suspend timeout ms (default 500000)."
Shubham Ajmera981d99c2017-08-17 14:11:08 -0700740 echo " --dex2oat-jobs Number of dex2oat jobs."
Alex Light91de25f2015-10-28 17:00:06 -0700741 ) 1>&2 # Direct to stderr so usage is not printed if --quiet is set.
jeffhao5d1ac922011-09-29 17:41:15 -0700742 exit 1
743fi
744
745cd "$test_dir"
746test_dir=`pwd`
747
748td_info="${test_dir}/${info}"
749td_expected="${test_dir}/${expected}"
750
Brian Carlstrom22469aa2012-09-07 10:34:57 -0700751if [ ! -r $td_info ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700752 err_echo "${test_dir}: missing file $td_info"
Brian Carlstrom22469aa2012-09-07 10:34:57 -0700753 exit 1
754fi
755
756if [ ! -r $td_expected ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700757 err_echo "${test_dir}: missing file $td_expected"
jeffhao5d1ac922011-09-29 17:41:15 -0700758 exit 1
759fi
760
761# copy the test to a temp dir and run it
762
Elliott Hughes510c8782011-10-06 10:57:34 -0700763echo "${test_dir}: building..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700764
765rm -rf "$tmp_dir"
Nicolas Geoffray202b6172018-10-10 07:47:58 +0000766cp -Rp "$test_dir" "$tmp_dir"
jeffhao5d1ac922011-09-29 17:41:15 -0700767cd "$tmp_dir"
768
769if [ '!' -r "$build" ]; then
770 cp "${progdir}/etc/default-build" build
Zheng Xuc6667102015-05-15 16:08:45 +0800771else
772 cp "${progdir}/etc/default-build" .
jeffhao5d1ac922011-09-29 17:41:15 -0700773fi
774
775if [ '!' -r "$run" ]; then
776 cp "${progdir}/etc/default-run" run
Zheng Xuc6667102015-05-15 16:08:45 +0800777else
778 cp "${progdir}/etc/default-run" .
jeffhao5d1ac922011-09-29 17:41:15 -0700779fi
780
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700781if [ '!' -r "$check_cmd" ]; then
782 cp "${progdir}/etc/default-check" check
Zheng Xuc6667102015-05-15 16:08:45 +0800783else
784 cp "${progdir}/etc/default-check" .
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700785fi
786
jeffhao5d1ac922011-09-29 17:41:15 -0700787chmod 755 "$build"
788chmod 755 "$run"
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700789chmod 755 "$check_cmd"
jeffhao5d1ac922011-09-29 17:41:15 -0700790
Elliott Hughes8cbc8bc2011-10-04 11:19:45 -0700791export TEST_NAME=`basename ${test_dir}`
792
Nicolas Geoffray1949baf2017-10-17 12:14:53 +0000793# Tests named '<number>-checker-*' will also have their CFGs verified with
794# Checker when compiled with Optimizing on host.
795if [[ "$TEST_NAME" =~ ^[0-9]+-checker- ]]; then
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100796 if [ "$runtime" = "art" -a "$image_suffix" = "" -a "$run_optimizing" = "true" ]; then
Nicolas Geoffray1949baf2017-10-17 12:14:53 +0000797 # In no-prebuild or no-image mode, the compiler only quickens so disable the checker.
798 if [ "$prebuild_mode" = "yes" -a "$have_image" = "yes" ]; then
799 run_checker="yes"
800
801 if [ "$target_mode" = "no" ]; then
802 cfg_output_dir="$tmp_dir"
803 checker_args="--arch=${host_arch_name^^}"
804 else
805 cfg_output_dir="$DEX_LOCATION"
806 checker_args="--arch=${target_arch_name^^}"
807 fi
808
809 if [ "$debuggable" = "yes" ]; then
810 checker_args="$checker_args --debuggable"
811 fi
812
813 run_args="${run_args} -Xcompiler-option --dump-cfg=$cfg_output_dir/$cfg_output \
814 -Xcompiler-option -j1"
815 fi
816 fi
817fi
818
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100819run_args="${run_args} --testlib ${testlib}"
Mathieu Chartier031768a2015-08-27 10:25:02 -0700820
Richard Uhler020c0f32017-03-14 16:23:17 +0000821# To cause tests to fail fast, limit the file sizes created by dx, dex2oat and
822# ART output to approximately 128MB. This should be more than sufficient
823# for any test while still catching cases of runaway output.
824# Set a hard limit to encourage ART developers to increase the ulimit here if
825# needed to support a test case rather than resetting the limit in the run
826# script for the particular test in question.
Orion Hodsonbd328d32017-03-24 11:24:10 +0000827if ! ulimit -f 128000; then
Richard Uhler020c0f32017-03-14 16:23:17 +0000828 err_echo "ulimit file size setting failed"
Ian Rogers997f0f92014-06-21 22:58:05 -0700829fi
830
Igor Murashkin2de6e082018-02-28 15:25:23 -0800831# Tell the build script which mode (target, host, jvm) we are building for
832# to determine the bootclasspath at build time.
Igor Murashkin2a337752017-06-16 14:34:40 +0000833if [[ "$target_mode" == "yes" ]]; then
834 build_args="$build_args --target"
835else
Igor Murashkin2de6e082018-02-28 15:25:23 -0800836 if [[ $runtime == "jvm" ]]; then
837 build_args="$build_args --jvm"
838 else
839 build_args="$build_args --host"
840 fi
Igor Murashkin2a337752017-06-16 14:34:40 +0000841fi
842
843if [[ "$dev_mode" == "yes" ]]; then
844 build_args="$build_args --dev"
845fi
846
jeffhao5d1ac922011-09-29 17:41:15 -0700847good="no"
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000848good_build="yes"
849good_run="yes"
Alex Light77fee872017-09-05 14:51:49 -0700850export TEST_RUNTIME="${runtime}"
jeffhao5d1ac922011-09-29 17:41:15 -0700851if [ "$dev_mode" = "yes" ]; then
David Brazdil4846d132015-01-15 19:07:08 +0000852 "./${build}" $build_args 2>&1
Elliott Hughes7ab3a2a2012-06-18 16:34:20 -0700853 build_exit="$?"
854 echo "build exit status: $build_exit" 1>&2
855 if [ "$build_exit" = '0' ]; then
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800856 echo "${test_dir}: running..." 1>&2
857 "./${run}" $run_args "$@" 2>&1
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700858 run_exit="$?"
Calin Juravle3cf48772015-01-26 16:47:33 +0000859
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800860 if [ "$run_exit" = "0" ]; then
Calin Juravle3cf48772015-01-26 16:47:33 +0000861 if [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100862 if [ "$target_mode" = "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +0000863 adb pull "$chroot/$cfg_output_dir/$cfg_output" &> /dev/null
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100864 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100865 "$checker" $checker_args "$cfg_output" "$tmp_dir" 2>&1
Calin Juravle3cf48772015-01-26 16:47:33 +0000866 checker_exit="$?"
867 if [ "$checker_exit" = "0" ]; then
868 good="yes"
869 fi
Alex Light91de25f2015-10-28 17:00:06 -0700870 err_echo "checker exit status: $checker_exit"
Calin Juravle3cf48772015-01-26 16:47:33 +0000871 else
872 good="yes"
873 fi
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800874 fi
Calin Juravle3cf48772015-01-26 16:47:33 +0000875 echo "run exit status: $run_exit" 1>&2
Elliott Hughes7ab3a2a2012-06-18 16:34:20 -0700876 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700877elif [ "$update_mode" = "yes" ]; then
David Brazdil4846d132015-01-15 19:07:08 +0000878 "./${build}" $build_args >"$build_output" 2>&1
jeffhao5d1ac922011-09-29 17:41:15 -0700879 build_exit="$?"
880 if [ "$build_exit" = '0' ]; then
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800881 echo "${test_dir}: running..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700882 "./${run}" $run_args "$@" >"$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +0000883 if [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100884 if [ "$target_mode" = "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +0000885 adb pull "$chroot/$cfg_output_dir/$cfg_output" &> /dev/null
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100886 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100887 "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >> "$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +0000888 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700889 sed -e 's/[[:cntrl:]]$//g' < "$output" >"${td_expected}"
890 good="yes"
891 else
Alex Light91de25f2015-10-28 17:00:06 -0700892 cat "$build_output" 1>&${real_stderr} 1>&2
893 err_echo "build exit status: $build_exit"
jeffhao5d1ac922011-09-29 17:41:15 -0700894 fi
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700895elif [ "$build_only" = "yes" ]; then
896 good="yes"
David Brazdil4846d132015-01-15 19:07:08 +0000897 "./${build}" $build_args >"$build_output" 2>&1
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700898 build_exit="$?"
899 if [ "$build_exit" '!=' '0' ]; then
900 cp "$build_output" "$output"
901 echo "build exit status: $build_exit" >>"$output"
902 diff --strip-trailing-cr -q "$expected" "$output" >/dev/null
903 if [ "$?" '!=' "0" ]; then
904 good="no"
Alex Light91de25f2015-10-28 17:00:06 -0700905 err_echo "BUILD FAILED For ${TEST_NAME}"
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700906 fi
907 fi
Tsu Chiang Chuang379e2f52013-08-20 12:24:52 -0700908 # Clean up extraneous files that are not used by tests.
Tsu Chiang Chuang0160d992013-09-13 14:17:42 -0700909 find $tmp_dir -mindepth 1 ! -regex ".*/\(.*jar\|$output\|$expected\)" | xargs rm -rf
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700910 exit 0
jeffhao5d1ac922011-09-29 17:41:15 -0700911else
David Brazdil4846d132015-01-15 19:07:08 +0000912 "./${build}" $build_args >"$build_output" 2>&1
jeffhao5d1ac922011-09-29 17:41:15 -0700913 build_exit="$?"
914 if [ "$build_exit" = '0' ]; then
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800915 echo "${test_dir}: running..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700916 "./${run}" $run_args "$@" >"$output" 2>&1
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000917 run_exit="$?"
918 if [ "$run_exit" != "0" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700919 err_echo "run exit status: $run_exit"
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000920 good_run="no"
David Brazdil4846d132015-01-15 19:07:08 +0000921 elif [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100922 if [ "$target_mode" = "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +0000923 adb pull "$chroot/$cfg_output_dir/$cfg_output" &> /dev/null
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100924 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100925 "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >> "$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +0000926 checker_exit="$?"
927 if [ "$checker_exit" != "0" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700928 err_echo "checker exit status: $checker_exit"
David Brazdil4846d132015-01-15 19:07:08 +0000929 good_run="no"
930 else
931 good_run="yes"
932 fi
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000933 else
934 good_run="yes"
935 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700936 else
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000937 good_build="no"
jeffhao5d1ac922011-09-29 17:41:15 -0700938 cp "$build_output" "$output"
Andreas Gampef6930a82014-10-21 09:33:08 -0700939 echo "Failed to build in tmpdir=${tmp_dir} from oldwd=${oldwd} and cwd=`pwd`" >> "$output"
940 echo "Non-canonical tmpdir was ${noncanonical_tmp_dir}" >> "$output"
Ian Rogersd9ad27d2014-10-27 13:48:21 -0700941 echo "Args: ${args}" >> "$output"
Andreas Gampef6930a82014-10-21 09:33:08 -0700942 echo "build exit status: $build_exit" >> "$output"
Andreas Gampe5c114902014-10-27 17:03:58 -0700943 max_name_length=$(getconf NAME_MAX ${tmp_dir})
944 echo "Max filename (NAME_MAX): ${max_name_length}" >> "$output"
945 max_path_length=$(getconf PATH_MAX ${tmp_dir})
Andreas Gampe602fbcd2014-10-27 17:06:29 -0700946 echo "Max pathlength (PATH_MAX): ${max_path_length}" >> "$output"
jeffhao5d1ac922011-09-29 17:41:15 -0700947 fi
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700948 ./$check_cmd "$expected" "$output"
jeffhao5d1ac922011-09-29 17:41:15 -0700949 if [ "$?" = "0" ]; then
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000950 if [ "$good_build" = "no" -o "$good_run" = "yes" ]; then
951 # output == expected
952 good="yes"
953 echo "${test_dir}: succeeded!" 1>&2
954 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700955 fi
956fi
957
jeffhao5d1ac922011-09-29 17:41:15 -0700958(
Alex Lightbfac14a2014-07-30 09:41:21 -0700959 if [ "$good" != "yes" -a "$update_mode" != "yes" ]; then
jeffhao5d1ac922011-09-29 17:41:15 -0700960 echo "${test_dir}: FAILED!"
961 echo ' '
962 echo '#################### info'
963 cat "${td_info}" | sed 's/^/# /g'
964 echo '#################### diffs'
Hiroshi Yamauchid630fd62015-09-04 12:52:03 -0700965 diff --strip-trailing-cr -u "$expected" "$output" | tail -n 3000
jeffhao5d1ac922011-09-29 17:41:15 -0700966 echo '####################'
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700967 if [ "$strace" = "yes" ]; then
968 echo '#################### strace output'
Hiroshi Yamauchid630fd62015-09-04 12:52:03 -0700969 tail -n 3000 "$tmp_dir/$strace_output"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700970 echo '####################'
971 fi
Andreas Gampee79ca192017-07-31 10:30:16 -0700972 if [ "x$target_mode" = "xno" -a "x$SANITIZE_HOST" = "xaddress" ]; then
973 # Run the stack script to symbolize any ASAN aborts on the host for SANITIZE_HOST. The
974 # tools used by the given ABI work for both x86 and x86-64.
975 echo "ABI: 'x86_64'" | cat - "$output" | $ANDROID_BUILD_TOP/development/scripts/stack | tail -n 3000
976 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700977 echo ' '
978 fi
Alex Lightbfac14a2014-07-30 09:41:21 -0700979
Alex Light91de25f2015-10-28 17:00:06 -0700980) 2>&${real_stderr} 1>&2
Alex Lightbfac14a2014-07-30 09:41:21 -0700981
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700982# Attempt bisection only if the test failed.
Roland Levillain76cfe612017-10-30 13:14:28 +0000983# TODO: Implement support for chroot-based bisection search.
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700984if [ "$bisection_search" = "yes" -a "$good" != "yes" ]; then
985 # Bisecting works by skipping different optimization passes which breaks checker assertions.
986 if [ "$run_checker" == "yes" ]; then
987 echo "${test_dir}: not bisecting, checker test." 1>&2
988 else
989 # Increase file size limit, bisection search can generate large logfiles.
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700990 echo "${test_dir}: bisecting..." 1>&2
991 cwd=`pwd`
992 maybe_device_mode=""
993 raw_cmd=""
994 if [ "$target_mode" = "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +0000995 # Produce cmdline.sh in $chroot_dex_location. "$@" is passed as a runtime option
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700996 # so that cmdline.sh forwards its arguments to dalvikvm. invoke-with is set
997 # to exec in order to preserve pid when calling dalvikvm. This is required
998 # for bisection search to correctly retrieve logs from device.
999 "./${run}" $run_args --runtime-option '"$@"' --invoke-with exec --dry-run "$@" &> /dev/null
Roland Levillain76cfe612017-10-30 13:14:28 +00001000 adb shell chmod u+x "$chroot_dex_location/cmdline.sh"
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001001 maybe_device_mode="--device"
1002 raw_cmd="$DEX_LOCATION/cmdline.sh"
1003 else
1004 raw_cmd="$cwd/${run} --external-log-tags $run_args $@"
1005 fi
Roland Levillain76cfe612017-10-30 13:14:28 +00001006 # TODO: Pass a `--chroot` option to the bisection_search.py script and use it there.
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001007 $ANDROID_BUILD_TOP/art/tools/bisection_search/bisection_search.py \
1008 $maybe_device_mode \
1009 --raw-cmd="$raw_cmd" \
1010 --check-script="$cwd/check" \
1011 --expected-output="$cwd/expected.txt" \
Wojciech Staszkiewicz0c883832016-09-26 17:51:52 -07001012 --logfile="$cwd/bisection_log.txt" \
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001013 --timeout=300
1014 fi
1015fi
1016
Alex Lightbfac14a2014-07-30 09:41:21 -07001017# Clean up test files.
Igor Murashkin05f30e12015-06-10 15:57:17 -07001018if [ "$always_clean" = "yes" -o "$good" = "yes" ] && [ "$never_clean" = "no" ]; then
Alex Lightbfac14a2014-07-30 09:41:21 -07001019 cd "$oldwd"
1020 rm -rf "$tmp_dir"
1021 if [ "$target_mode" = "yes" -a "$build_exit" = "0" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +00001022 adb shell rm -rf $chroot_dex_location
Alex Lightbfac14a2014-07-30 09:41:21 -07001023 fi
1024 if [ "$good" = "yes" ]; then
1025 exit 0
1026 fi
1027fi
1028
1029
1030(
1031 if [ "$always_clean" = "yes" ]; then
1032 echo "${TEST_NAME} files deleted from host "
1033 if [ "$target_mode" == "yes" ]; then
1034 echo "and from target"
1035 fi
1036 else
1037 echo "${TEST_NAME} files left in ${tmp_dir} on host"
1038 if [ "$target_mode" == "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +00001039 echo "and in ${chroot_dex_location} on target"
Alex Lightbfac14a2014-07-30 09:41:21 -07001040 fi
Brian Carlstrom105215d2012-06-14 12:50:44 -07001041 fi
1042
Alex Light91de25f2015-10-28 17:00:06 -07001043) 2>&${real_stderr} 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -07001044
Alex Light6a870fa2016-05-31 16:36:19 -07001045if [ "$never_clean" = "yes" ] && [ "$good" = "yes" ]; then
1046 exit 0
1047else
1048 exit 1
1049fi