blob: cfe81114769c835c3de1a46a0c56900020b167e5 [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
Alex Light680cbf22018-10-31 11:00:19 -070091host_lib_root=${ANDROID_HOST_OUT}
92
Igor Murashkine5181932017-06-15 16:03:50 -070093# Allow changing DESUGAR script to something else, or to disable it with DESUGAR=false.
Igor Murashkind3232772017-06-22 14:54:13 -070094if [ -z "$DESUGAR" ]; then
Igor Murashkine5181932017-06-15 16:03:50 -070095 export DESUGAR="$ANDROID_BUILD_TOP/art/tools/desugar.sh"
96fi
97
Igor Murashkin271a0f82017-02-14 21:14:17 +000098# Zipalign is not on the PATH in some configs, auto-detect it.
99if [ -z "$ZIPALIGN" ]; then
100 if which zipalign >/dev/null; then
101 ZIPALIGN="zipalign";
102 else
103 # TODO: Add a dependency for zipalign in Android.run-test.mk
104 # once it doesn't depend on libandroidfw (b/35246701)
105 case "$OSTYPE" in
106 darwin*) ZIPALIGN="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/darwin/bin/zipalign" ;;
107 linux*) ZIPALIGN="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/linux/bin/zipalign" ;;
108 *) echo "Can't find zipalign: unknown: $OSTYPE" >&2;;
109 esac
110 fi
111fi
112export ZIPALIGN
113
David Brazdil122c6632018-01-24 17:32:49 +0000114# If hiddenapi was not set by the environment variable, assume it is in
115# ANDROID_HOST_OUT.
David Brazdil11b67b22018-01-18 16:41:40 +0000116if [ -z "$HIDDENAPI" ]; then
David Brazdil122c6632018-01-24 17:32:49 +0000117 export HIDDENAPI="${ANDROID_HOST_OUT}/bin/hiddenapi"
David Brazdil11b67b22018-01-18 16:41:40 +0000118fi
119
Roland Levillain76cfe612017-10-30 13:14:28 +0000120chroot=
121
jeffhao5d1ac922011-09-29 17:41:15 -0700122info="info.txt"
123build="build"
124run="run"
125expected="expected.txt"
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700126check_cmd="check"
jeffhao5d1ac922011-09-29 17:41:15 -0700127output="output.txt"
128build_output="build-output.txt"
David Brazdil24128c62015-05-21 12:06:13 +0100129cfg_output="graph.cfg"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700130strace_output="strace-output.txt"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700131lib="libartd.so"
Mathieu Chartier031768a2015-08-27 10:25:02 -0700132testlib="arttestd"
Andreas Gampe11410de2019-07-02 15:53:53 -0700133run_args=(--quiet)
David Brazdil4846d132015-01-15 19:07:08 +0000134build_args=""
jeffhao5d1ac922011-09-29 17:41:15 -0700135
Alex Light91de25f2015-10-28 17:00:06 -0700136quiet="no"
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000137debuggable="no"
Alex Light9d722532014-07-22 18:07:12 -0700138prebuild_mode="yes"
Brian Carlstrom2613de42012-06-15 17:37:16 -0700139target_mode="yes"
jeffhao5d1ac922011-09-29 17:41:15 -0700140dev_mode="no"
Alex Light8d94ddd2019-12-18 11:13:03 -0800141create_runner="no"
jeffhao5d1ac922011-09-29 17:41:15 -0700142update_mode="no"
Alex Lighta59dd802014-07-02 16:28:08 -0700143debug_mode="no"
Xueliang Zhong48ca6a62019-03-07 14:48:55 +0000144simulator_mode="no"
Nicolas Geoffray94e25db2017-01-27 14:54:28 +0000145relocate="no"
Jeff Hao201803f2013-11-20 18:11:39 -0800146runtime="art"
jeffhao5d1ac922011-09-29 17:41:15 -0700147usage="no"
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700148build_only="no"
Andreas Gampe2fe07922014-04-21 07:50:39 -0700149suffix64=""
Jeff Hao85139a32014-07-23 11:52:52 -0700150trace="false"
Andreas Gampe7526d782015-06-22 22:53:45 -0700151trace_stream="false"
Alex Lighte7873ec2014-08-12 09:53:50 -0700152basic_verify="false"
153gc_verify="false"
154gc_stress="false"
Alex Lightb7edcda2017-04-27 13:20:31 -0700155jvmti_trace_stress="false"
Alex Light43e935d2017-06-19 15:40:40 -0700156jvmti_field_stress="false"
Alex Lightc38c3692017-06-27 15:45:14 -0700157jvmti_step_stress="false"
Alex Lightb7edcda2017-04-27 13:20:31 -0700158jvmti_redefine_stress="false"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700159strace="false"
Alex Lightbfac14a2014-07-30 09:41:21 -0700160always_clean="no"
Igor Murashkin05f30e12015-06-10 15:57:17 -0700161never_clean="no"
Alex Light03a112d2014-08-25 13:25:56 -0700162have_image="yes"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000163android_root="/system"
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700164bisection_search="no"
Martin Stjernholm4815e722019-09-24 16:20:09 +0100165timeout=""
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800166suspend_timeout="500000"
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100167run_optimizing="false"
jeffhao5d1ac922011-09-29 17:41:15 -0700168
Alex Light20802ca2018-12-05 15:36:03 -0800169# To cause tests to fail fast, limit the file sizes created by dx, dex2oat and
170# ART output to approximately 128MB. This should be more than sufficient
171# for any test while still catching cases of runaway output.
172# Set a hard limit to encourage ART developers to increase the ulimit here if
173# needed to support a test case rather than resetting the limit in the run
174# script for the particular test in question. Adjust this if needed for
175# particular configurations.
176file_ulimit=128000
177
Andreas Gampe11410de2019-07-02 15:53:53 -0700178
jeffhao5d1ac922011-09-29 17:41:15 -0700179while true; do
180 if [ "x$1" = "x--host" ]; then
Brian Carlstrom2613de42012-06-15 17:37:16 -0700181 target_mode="no"
TDYa127b92bcab2012-04-08 00:09:51 -0700182 DEX_LOCATION=$tmp_dir
Andreas Gampe11410de2019-07-02 15:53:53 -0700183 run_args+=(--host)
jeffhao5d1ac922011-09-29 17:41:15 -0700184 shift
Xueliang Zhong48ca6a62019-03-07 14:48:55 +0000185 elif [ "x$1" = "x--simulate-arm64" ]; then
186 simulator_mode="yes"
187 shift
Alex Light91de25f2015-10-28 17:00:06 -0700188 elif [ "x$1" = "x--quiet" ]; then
189 quiet="yes"
190 shift
Alex Lighteb7c1442015-08-31 13:17:42 -0700191 elif [ "x$1" = "x--use-java-home" ]; then
192 if [ -n "${JAVA_HOME}" ]; then
193 export JAVA="${JAVA_HOME}/bin/java"
194 export JAVAC="${JAVA_HOME}/bin/javac -g"
195 else
196 echo "Passed --use-java-home without JAVA_HOME variable set!"
197 usage="yes"
198 fi
199 shift
Elliott Hughes58bcc402012-02-14 14:10:10 -0800200 elif [ "x$1" = "x--jvm" ]; then
Brian Carlstrom2613de42012-06-15 17:37:16 -0700201 target_mode="no"
Alex Light2c7aaeb2017-01-27 14:08:17 -0800202 DEX_LOCATION="$tmp_dir"
Jeff Hao201803f2013-11-20 18:11:39 -0800203 runtime="jvm"
Brian Carlstrom01afdba2014-10-03 10:28:47 -0700204 prebuild_mode="no"
Elliott Hughesc717eef2012-06-15 16:01:26 -0700205 NEED_DEX="false"
Andreas Gampe11410de2019-07-02 15:53:53 -0700206 run_args+=(--jvm)
jeffhao5d1ac922011-09-29 17:41:15 -0700207 shift
Elliott Hughes58bcc402012-02-14 14:10:10 -0800208 elif [ "x$1" = "x-O" ]; then
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700209 lib="libart.so"
Mathieu Chartier031768a2015-08-27 10:25:02 -0700210 testlib="arttest"
Andreas Gampe11410de2019-07-02 15:53:53 -0700211 run_args+=(-O)
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700212 shift
213 elif [ "x$1" = "x--dalvik" ]; then
214 lib="libdvm.so"
Jeff Hao201803f2013-11-20 18:11:39 -0800215 runtime="dalvik"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700216 shift
Alex Light03a112d2014-08-25 13:25:56 -0700217 elif [ "x$1" = "x--no-image" ]; then
218 have_image="no"
219 shift
Alex Lighta59dd802014-07-02 16:28:08 -0700220 elif [ "x$1" = "x--relocate" ]; then
221 relocate="yes"
222 shift
223 elif [ "x$1" = "x--no-relocate" ]; then
224 relocate="no"
225 shift
226 elif [ "x$1" = "x--prebuild" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700227 run_args+=(--prebuild)
Alex Lighta59dd802014-07-02 16:28:08 -0700228 prebuild_mode="yes"
229 shift;
Mathieu Chartierdcd56c92017-11-20 20:30:24 -0800230 elif [ "x$1" = "x--compact-dex-level" ]; then
231 option="$1"
232 shift
Andreas Gampe11410de2019-07-02 15:53:53 -0700233 run_args+=("$option" "$1")
Mathieu Chartierdcd56c92017-11-20 20:30:24 -0800234 shift;
Richard Uhler76f5cb62016-04-04 13:30:16 -0700235 elif [ "x$1" = "x--strip-dex" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700236 run_args+=(--strip-dex)
Richard Uhler76f5cb62016-04-04 13:30:16 -0700237 shift;
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000238 elif [ "x$1" = "x--debuggable" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700239 run_args+=(-Xcompiler-option --debuggable)
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000240 debuggable="yes"
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000241 shift;
Alex Lighta59dd802014-07-02 16:28:08 -0700242 elif [ "x$1" = "x--no-prebuild" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700243 run_args+=(--no-prebuild)
Alex Lighta59dd802014-07-02 16:28:08 -0700244 prebuild_mode="no"
245 shift;
Alex Lighte7873ec2014-08-12 09:53:50 -0700246 elif [ "x$1" = "x--gcverify" ]; then
247 basic_verify="true"
248 gc_verify="true"
249 shift
250 elif [ "x$1" = "x--gcstress" ]; then
251 basic_verify="true"
252 gc_stress="true"
253 shift
Alex Lightc38c3692017-06-27 15:45:14 -0700254 elif [ "x$1" = "x--jvmti-step-stress" ]; then
255 jvmti_step_stress="true"
256 shift
Alex Lightb7edcda2017-04-27 13:20:31 -0700257 elif [ "x$1" = "x--jvmti-redefine-stress" ]; then
258 jvmti_redefine_stress="true"
259 shift
Alex Light43e935d2017-06-19 15:40:40 -0700260 elif [ "x$1" = "x--jvmti-field-stress" ]; then
261 jvmti_field_stress="true"
262 shift
Alex Lightb7edcda2017-04-27 13:20:31 -0700263 elif [ "x$1" = "x--jvmti-trace-stress" ]; then
264 jvmti_trace_stress="true"
Alex Light8f2c6d42017-04-10 16:27:35 -0700265 shift
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800266 elif [ "x$1" = "x--suspend-timeout" ]; then
267 shift
268 suspend_timeout="$1"
269 shift
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700270 elif [ "x$1" = "x--image" ]; then
271 shift
272 image="$1"
Andreas Gampe11410de2019-07-02 15:53:53 -0700273 run_args+=(--image "$image")
Elliott Hughes7c046102011-10-19 18:16:03 -0700274 shift
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000275 elif [ "x$1" = "x-Xcompiler-option" ]; then
276 shift
277 option="$1"
Andreas Gampe11410de2019-07-02 15:53:53 -0700278 run_args+=(-Xcompiler-option "$option")
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000279 shift
Orion Hodsone1fb77f2017-02-27 13:57:18 +0000280 elif [ "x$1" = "x--build-option" ]; then
281 shift
282 option="$1"
283 build_args="${build_args} $option"
284 shift
Mathieu Chartier769a5ad2014-05-18 15:30:10 -0700285 elif [ "x$1" = "x--runtime-option" ]; then
286 shift
287 option="$1"
Andreas Gampe11410de2019-07-02 15:53:53 -0700288 run_args+=(--runtime-option "$option")
Mathieu Chartier769a5ad2014-05-18 15:30:10 -0700289 shift
Mathieu Chartierc0a8a802014-10-17 15:58:01 -0700290 elif [ "x$1" = "x--gdb-arg" ]; then
291 shift
292 gdb_arg="$1"
Andreas Gampe11410de2019-07-02 15:53:53 -0700293 run_args+=(--gdb-arg "$gdb_arg")
Mathieu Chartierc0a8a802014-10-17 15:58:01 -0700294 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700295 elif [ "x$1" = "x--debug" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700296 run_args+=(--debug)
jeffhao5d1ac922011-09-29 17:41:15 -0700297 shift
Alex Lightc281ba52017-10-11 11:35:55 -0700298 elif [ "x$1" = "x--debug-wrap-agent" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700299 run_args+=(--debug-wrap-agent)
Alex Lightc281ba52017-10-11 11:35:55 -0700300 shift
Alex Light0e151e72017-10-25 10:50:35 -0700301 elif [ "x$1" = "x--with-agent" ]; then
302 shift
303 option="$1"
Andreas Gampe11410de2019-07-02 15:53:53 -0700304 run_args+=(--with-agent "$1")
Alex Light0e151e72017-10-25 10:50:35 -0700305 shift
Alex Lightc281ba52017-10-11 11:35:55 -0700306 elif [ "x$1" = "x--debug-agent" ]; then
307 shift
308 option="$1"
Andreas Gampe11410de2019-07-02 15:53:53 -0700309 run_args+=(--debug-agent "$1")
Alex Lightc281ba52017-10-11 11:35:55 -0700310 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700311 elif [ "x$1" = "x--gdb" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700312 run_args+=(--gdb)
jeffhao5d1ac922011-09-29 17:41:15 -0700313 dev_mode="yes"
314 shift
Alex Lighte4b4a182019-02-12 14:19:49 -0800315 elif [ "x$1" = "x--gdbserver-bin" ]; then
316 shift
Andreas Gampe11410de2019-07-02 15:53:53 -0700317 run_args+=(--gdbserver-bin "$1")
Alex Lighte4b4a182019-02-12 14:19:49 -0800318 shift
319 elif [ "x$1" = "x--gdbserver-port" ]; then
320 shift
Andreas Gampe11410de2019-07-02 15:53:53 -0700321 run_args+=(--gdbserver-port "$1")
Alex Lighte4b4a182019-02-12 14:19:49 -0800322 shift
323 elif [ "x$1" = "x--gdbserver" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700324 run_args+=(--gdbserver)
Alex Lighte4b4a182019-02-12 14:19:49 -0800325 dev_mode="yes"
326 shift
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700327 elif [ "x$1" = "x--strace" ]; then
328 strace="yes"
Martin Stjernholm4815e722019-09-24 16:20:09 +0100329 run_args+=(--invoke-with strace --invoke-with -o --invoke-with "$tmp_dir/$strace_output")
330 timeout="${timeout:-1800}"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700331 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700332 elif [ "x$1" = "x--zygote" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700333 run_args+=(--zygote)
jeffhao5d1ac922011-09-29 17:41:15 -0700334 shift
jeffhao0dff3f42012-11-20 15:13:43 -0800335 elif [ "x$1" = "x--interpreter" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700336 run_args+=(--interpreter)
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700337 shift
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800338 elif [ "x$1" = "x--jit" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700339 run_args+=(--jit)
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800340 shift
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100341 elif [ "x$1" = "x--baseline" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700342 run_args+=(--baseline)
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100343 shift
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700344 elif [ "x$1" = "x--optimizing" ]; then
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100345 run_optimizing="true"
jeffhao0dff3f42012-11-20 15:13:43 -0800346 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700347 elif [ "x$1" = "x--no-verify" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700348 run_args+=(--no-verify)
jeffhao5d1ac922011-09-29 17:41:15 -0700349 shift
Igor Murashkin7617abd2015-07-10 18:27:47 -0700350 elif [ "x$1" = "x--verify-soft-fail" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700351 run_args+=(--verify-soft-fail)
Igor Murashkin7617abd2015-07-10 18:27:47 -0700352 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700353 elif [ "x$1" = "x--no-optimize" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700354 run_args+=(--no-optimize)
jeffhao5d1ac922011-09-29 17:41:15 -0700355 shift
356 elif [ "x$1" = "x--no-precise" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700357 run_args+=(--no-precise)
jeffhao5d1ac922011-09-29 17:41:15 -0700358 shift
Elliott Hughes7c046102011-10-19 18:16:03 -0700359 elif [ "x$1" = "x--invoke-with" ]; then
360 shift
361 what="$1"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700362 if [ "x$what" = "x" ]; then
363 echo "$0 missing argument to --invoke-with" 1>&2
364 usage="yes"
365 break
366 fi
Andreas Gampe11410de2019-07-02 15:53:53 -0700367 run_args+=(--invoke-with "${what}")
jeffhao5d1ac922011-09-29 17:41:15 -0700368 shift
Alex Light8d94ddd2019-12-18 11:13:03 -0800369 elif [ "x$1" = "x--create-runner" ]; then
370 run_args+=(--create-runner --dry-run)
371 dev_mode="yes"
372 never_clean="yes"
373 create_runner="yes"
374 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700375 elif [ "x$1" = "x--dev" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700376 run_args+=(--dev)
jeffhao5d1ac922011-09-29 17:41:15 -0700377 dev_mode="yes"
378 shift
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700379 elif [ "x$1" = "x--build-only" ]; then
380 build_only="yes"
381 shift
382 elif [ "x$1" = "x--output-path" ]; then
383 shift
384 tmp_dir=$1
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700385 if [ "x$tmp_dir" = "x" ]; then
386 echo "$0 missing argument to --output-path" 1>&2
387 usage="yes"
388 break
389 fi
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700390 shift
Roland Levillain76cfe612017-10-30 13:14:28 +0000391 elif [ "x$1" = "x--chroot" ]; then
392 shift
393 if [ "x$1" = "x" ]; then
394 echo "$0 missing argument to --chroot" 1>&2
395 usage="yes"
396 break
397 fi
398 chroot="$1"
Andreas Gampe11410de2019-07-02 15:53:53 -0700399 run_args+=(--chroot "$1")
Roland Levillain76cfe612017-10-30 13:14:28 +0000400 shift
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000401 elif [ "x$1" = "x--android-root" ]; then
402 shift
403 if [ "x$1" = "x" ]; then
404 echo "$0 missing argument to --android-root" 1>&2
405 usage="yes"
406 break
407 fi
408 android_root="$1"
Andreas Gampe11410de2019-07-02 15:53:53 -0700409 run_args+=(--android-root "$1")
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000410 shift
Martin Stjernholme58624f2019-09-20 15:53:40 +0100411 elif [ "x$1" = "x--android-art-root" ]; then
Roland Levillain28076142019-01-10 16:39:25 +0000412 shift
413 if [ "x$1" = "x" ]; then
Martin Stjernholme58624f2019-09-20 15:53:40 +0100414 echo "$0 missing argument to --android-art-root" 1>&2
Roland Levillain28076142019-01-10 16:39:25 +0000415 usage="yes"
416 break
417 fi
Martin Stjernholme58624f2019-09-20 15:53:40 +0100418 run_args+=(--android-art-root "$1")
Roland Levillain28076142019-01-10 16:39:25 +0000419 shift
Roland Levillain90b34572019-06-14 15:23:15 +0100420 elif [ "x$1" = "x--android-tzdata-root" ]; then
421 shift
422 if [ "x$1" = "x" ]; then
423 echo "$0 missing argument to --android-tzdata-root" 1>&2
424 usage="yes"
425 break
426 fi
Andreas Gampe11410de2019-07-02 15:53:53 -0700427 run_args+=(--android-tzdata-root "$1")
Roland Levillain90b34572019-06-14 15:23:15 +0100428 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700429 elif [ "x$1" = "x--update" ]; then
430 update_mode="yes"
431 shift
432 elif [ "x$1" = "x--help" ]; then
433 usage="yes"
434 shift
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700435 elif [ "x$1" = "x--64" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700436 run_args+=(--64)
Andreas Gampe2fe07922014-04-21 07:50:39 -0700437 suffix64="64"
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700438 shift
Alex Light680cbf22018-10-31 11:00:19 -0700439 elif [ "x$1" = "x--bionic" ]; then
440 # soong linux_bionic builds are 64bit only.
Andreas Gampe11410de2019-07-02 15:53:53 -0700441 run_args+=(--bionic --host --64)
Alex Light680cbf22018-10-31 11:00:19 -0700442 suffix64="64"
443 target_mode="no"
444 DEX_LOCATION=$tmp_dir
445 host_lib_root=$OUT_DIR/soong/host/linux_bionic-x86
446 shift
Alex Light6f342dd2019-03-27 17:15:42 +0000447 elif [ "x$1" = "x--runtime-extracted-zipapex" ]; then
448 shift
449 # TODO Should we allow the java.library.path to search the zipapex too?
450 # Not needed at the moment and adding it will be complicated so for now
451 # we'll ignore this.
Andreas Gampe11410de2019-07-02 15:53:53 -0700452 run_args+=(--host --runtime-extracted-zipapex "$1")
Alex Light6f342dd2019-03-27 17:15:42 +0000453 target_mode="no"
454 DEX_LOCATION=$tmp_dir
455 shift
Alex Light20802ca2018-12-05 15:36:03 -0800456 elif [ "x$1" = "x--runtime-zipapex" ]; then
457 shift
458 # TODO Should we allow the java.library.path to search the zipapex too?
459 # Not needed at the moment and adding it will be complicated so for now
460 # we'll ignore this.
Andreas Gampe11410de2019-07-02 15:53:53 -0700461 run_args+=(--host --runtime-zipapex "$1")
Alex Light20802ca2018-12-05 15:36:03 -0800462 target_mode="no"
463 DEX_LOCATION=$tmp_dir
464 # apex_payload.zip is quite large we need a high enough ulimit to
465 # extract it. 512mb should be good enough.
466 file_ulimit=512000
467 shift
Martin Stjernholm4815e722019-09-24 16:20:09 +0100468 elif [ "x$1" = "x--timeout" ]; then
469 shift
470 if [ "x$1" = "x" ]; then
471 echo "$0 missing argument to --timeout" 1>&2
472 usage="yes"
473 break
474 fi
475 timeout="$1"
476 shift
Sebastien Hertz07aaac82014-07-09 15:59:05 +0200477 elif [ "x$1" = "x--trace" ]; then
Jeff Hao85139a32014-07-23 11:52:52 -0700478 trace="true"
Sebastien Hertz07aaac82014-07-09 15:59:05 +0200479 shift
Andreas Gampe7526d782015-06-22 22:53:45 -0700480 elif [ "x$1" = "x--stream" ]; then
481 trace_stream="true"
482 shift
Alex Lightbfac14a2014-07-30 09:41:21 -0700483 elif [ "x$1" = "x--always-clean" ]; then
484 always_clean="yes"
485 shift
Igor Murashkin05f30e12015-06-10 15:57:17 -0700486 elif [ "x$1" = "x--never-clean" ]; then
487 never_clean="yes"
488 shift
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800489 elif [ "x$1" = "x--dex2oat-swap" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700490 run_args+=(--dex2oat-swap)
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800491 shift
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700492 elif [ "x$1" = "x--instruction-set-features" ]; then
493 shift
Andreas Gampe11410de2019-07-02 15:53:53 -0700494 run_args+=(--instruction-set-features "$1")
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700495 shift
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700496 elif [ "x$1" = "x--bisection-search" ]; then
497 bisection_search="yes"
498 shift
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000499 elif [ "x$1" = "x--vdex" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700500 run_args+=(--vdex)
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000501 shift
Nicolas Geoffraybaeaa9b2018-01-26 14:31:17 +0000502 elif [ "x$1" = "x--dm" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700503 run_args+=(--dm)
Nicolas Geoffraybaeaa9b2018-01-26 14:31:17 +0000504 shift
Nicolas Geoffray74981052017-01-16 17:54:09 +0000505 elif [ "x$1" = "x--vdex-filter" ]; then
506 shift
507 filter=$1
Andreas Gampe11410de2019-07-02 15:53:53 -0700508 run_args+=(--vdex-filter "$filter")
Nicolas Geoffray74981052017-01-16 17:54:09 +0000509 shift
Jeff Hao002b9312017-03-27 16:23:08 -0700510 elif [ "x$1" = "x--random-profile" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700511 run_args+=(--random-profile)
Jeff Hao002b9312017-03-27 16:23:08 -0700512 shift
Shubham Ajmera981d99c2017-08-17 14:11:08 -0700513 elif [ "x$1" = "x--dex2oat-jobs" ]; then
514 shift
Andreas Gampe11410de2019-07-02 15:53:53 -0700515 run_args+=(-Xcompiler-option "-j$1")
Shubham Ajmera981d99c2017-08-17 14:11:08 -0700516 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700517 elif expr "x$1" : "x--" >/dev/null 2>&1; then
Elliott Hughes7c046102011-10-19 18:16:03 -0700518 echo "unknown $0 option: $1" 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700519 usage="yes"
520 break
521 else
522 break
523 fi
524done
Andreas Gampe3a12cfe2014-08-13 15:40:22 -0700525
Orion Hodson6aa4e0d2018-05-25 09:39:16 +0100526if [ "$usage" = "no" -a "x$1" = "x" ]; then
527 echo "missing test to run" 1>&2
528 usage="yes"
529fi
530
Roland Levillain76cfe612017-10-30 13:14:28 +0000531# The DEX_LOCATION with the chroot prefix, if any.
532chroot_dex_location="$chroot$DEX_LOCATION"
533
Alex Light91de25f2015-10-28 17:00:06 -0700534# Allocate file descriptor real_stderr and redirect it to the shell's error
535# output (fd 2).
536if [ ${BASH_VERSINFO[1]} -ge 4 ] && [ ${BASH_VERSINFO[2]} -ge 1 ]; then
537 exec {real_stderr}>&2
538else
539 # In bash before version 4.1 we need to do a manual search for free file
540 # descriptors.
541 FD=3
542 while [ -e /dev/fd/$FD ]; do FD=$((FD + 1)); done
543 real_stderr=$FD
544 eval "exec ${real_stderr}>&2"
545fi
546if [ "$quiet" = "yes" ]; then
547 # Force the default standard output and error to go to /dev/null so we will
548 # not print them.
549 exec 1>/dev/null
550 exec 2>/dev/null
551fi
552
553function err_echo() {
554 echo "$@" 1>&${real_stderr}
555}
556
Andreas Gampe3a12cfe2014-08-13 15:40:22 -0700557# tmp_dir may be relative, resolve.
558#
559# Cannot use realpath, as it does not exist on Mac.
Roland Levillain76cfe612017-10-30 13:14:28 +0000560# Cannot use a simple "cd", as the path might not be created yet.
Brian Carlstromc580e042014-09-08 21:37:39 -0700561# Cannot use readlink -m, as it does not exist on Mac.
562# Fallback to nuclear option:
Andreas Gampe907b6992014-08-18 22:26:49 -0700563noncanonical_tmp_dir=$tmp_dir
Andreas Gampe86459c02019-08-29 14:01:18 -0700564tmp_dir="`cd $oldwd ; python -c "import os; import sys; sys.stdout.write(os.path.realpath('$tmp_dir'))"`"
565if [ -z $tmp_dir ] ; then
566 err_echo "Failed to resolve $tmp_dir"
567 exit 1
568fi
Dmitry Petrochenko81c56e72014-03-05 15:05:46 +0700569mkdir -p $tmp_dir
jeffhao5d1ac922011-09-29 17:41:15 -0700570
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800571# Add thread suspend timeout flag
Narayan Kamathf86c3932017-01-24 17:40:47 +0000572if [ ! "$runtime" = "jvm" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700573 run_args+=(--runtime-option "-XX:ThreadSuspendTimeout=$suspend_timeout")
Narayan Kamathf86c3932017-01-24 17:40:47 +0000574fi
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800575
Alex Lighte7873ec2014-08-12 09:53:50 -0700576if [ "$basic_verify" = "true" ]; then
Hiroshi Yamauchi312baf12015-01-12 12:11:05 -0800577 # Set HspaceCompactForOOMMinIntervalMs to zero to run hspace compaction for OOM more frequently in tests.
Andreas Gampe11410de2019-07-02 15:53:53 -0700578 run_args+=(--runtime-option -Xgc:preverify --runtime-option -Xgc:postverify --runtime-option -XX:HspaceCompactForOOMMinIntervalMs=0)
Alex Lighte7873ec2014-08-12 09:53:50 -0700579fi
580if [ "$gc_verify" = "true" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700581 run_args+=(--runtime-option -Xgc:preverify_rosalloc --runtime-option -Xgc:postverify_rosalloc)
Alex Lighte7873ec2014-08-12 09:53:50 -0700582fi
583if [ "$gc_stress" = "true" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700584 run_args+=(--gc-stress --runtime-option -Xgc:gcstress --runtime-option -Xms2m --runtime-option -Xmx16m)
Alex Lighte7873ec2014-08-12 09:53:50 -0700585fi
Alex Lightb7edcda2017-04-27 13:20:31 -0700586if [ "$jvmti_redefine_stress" = "true" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700587 run_args+=(--no-app-image --jvmti-redefine-stress)
Alex Lightb7edcda2017-04-27 13:20:31 -0700588fi
Alex Lightc38c3692017-06-27 15:45:14 -0700589if [ "$jvmti_step_stress" = "true" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700590 run_args+=(--no-app-image --jvmti-step-stress)
Alex Lightc38c3692017-06-27 15:45:14 -0700591fi
Alex Light43e935d2017-06-19 15:40:40 -0700592if [ "$jvmti_field_stress" = "true" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700593 run_args+=(--no-app-image --jvmti-field-stress)
Alex Light43e935d2017-06-19 15:40:40 -0700594fi
Alex Lightb7edcda2017-04-27 13:20:31 -0700595if [ "$jvmti_trace_stress" = "true" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700596 run_args+=(--no-app-image --jvmti-trace-stress)
Alex Light8f2c6d42017-04-10 16:27:35 -0700597fi
Jeff Hao85139a32014-07-23 11:52:52 -0700598if [ "$trace" = "true" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700599 run_args+=(--runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file-size:2000000)
Andreas Gampe7526d782015-06-22 22:53:45 -0700600 if [ "$trace_stream" = "true" ]; then
601 # Streaming mode uses the file size as the buffer size. So output gets really large. Drop
602 # the ability to analyze the file and just write to /dev/null.
Andreas Gampe11410de2019-07-02 15:53:53 -0700603 run_args+=(--runtime-option -Xmethod-trace-file:/dev/null)
Andreas Gampe7526d782015-06-22 22:53:45 -0700604 # Enable streaming mode.
Andreas Gampe11410de2019-07-02 15:53:53 -0700605 run_args+=(--runtime-option -Xmethod-trace-stream)
Andreas Gampe7526d782015-06-22 22:53:45 -0700606 else
Andreas Gampe11410de2019-07-02 15:53:53 -0700607 run_args+=(--runtime-option "-Xmethod-trace-file:${DEX_LOCATION}/trace.bin")
Andreas Gampe7526d782015-06-22 22:53:45 -0700608 fi
609elif [ "$trace_stream" = "true" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700610 err_echo "Cannot use --stream without --trace."
Andreas Gampe7526d782015-06-22 22:53:45 -0700611 exit 1
Jeff Hao85139a32014-07-23 11:52:52 -0700612fi
Martin Stjernholm4815e722019-09-24 16:20:09 +0100613if [ -n "$timeout" ]; then
614 run_args+=(--timeout "$timeout")
615fi
Jeff Hao85139a32014-07-23 11:52:52 -0700616
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700617# Most interesting target architecture variables are Makefile variables, not environment variables.
Nicolas Geoffray93d68462018-01-02 11:59:45 +0000618# 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 +0100619function guess_target_arch_name() {
Andreas Gamped0566d42018-06-06 09:54:34 -0700620 # Check whether this is a device with native bridge. Currently this is hardcoded
621 # to x86 + arm.
David Srbecky928d28e2020-04-01 17:50:51 +0100622 local guess_path=${ANDROID_PRODUCT_OUT}/system/apex/com.android.art.testing/javalib
623 local x86_arm=`ls ${guess_path} | sort | grep -E '^(arm|x86)$'`
Andreas Gamped0566d42018-06-06 09:54:34 -0700624 # Collapse line-breaks into spaces
625 x86_arm=$(echo $x86_arm)
626 if [ "x$x86_arm" = "xarm x86" ] ; then
627 err_echo "Native-bridge configuration detected."
628 # We only support the main arch for tests.
629 if [ "x${suffix64}" = "x64" ]; then
630 target_arch_name=""
631 else
632 target_arch_name=x86
633 fi
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700634 else
David Srbecky928d28e2020-04-01 17:50:51 +0100635 local grep32bit=`ls ${guess_path} | grep -E '^(arm|x86)$'`
636 local grep64bit=`ls ${guess_path} | grep -E '^(arm64|x86_64)$'`
Andreas Gamped0566d42018-06-06 09:54:34 -0700637 if [ "x${suffix64}" = "x64" ]; then
638 target_arch_name=${grep64bit}
639 else
640 target_arch_name=${grep32bit}
641 fi
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700642 fi
643}
644
David Brazdil853a4c32015-09-28 16:15:50 +0100645function guess_host_arch_name() {
646 if [ "x${suffix64}" = "x64" ]; then
647 host_arch_name="x86_64"
648 else
649 host_arch_name="x86"
650 fi
651}
652
Alex Lighta59dd802014-07-02 16:28:08 -0700653if [ "$target_mode" = "no" ]; then
654 if [ "$runtime" = "jvm" ]; then
Alex Lighta59dd802014-07-02 16:28:08 -0700655 if [ "$prebuild_mode" = "yes" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700656 err_echo "--prebuild with --jvm is unsupported"
Roland Levillain76cfe612017-10-30 13:14:28 +0000657 exit 1
658 fi
659 else
660 # ART/Dalvik host mode.
661 if [ -n "$chroot" ]; then
662 err_echo "--chroot with --host is unsupported"
663 exit 1
Alex Lighta59dd802014-07-02 16:28:08 -0700664 fi
Alex Lighta59dd802014-07-02 16:28:08 -0700665 fi
666fi
667
Jeff Hao201803f2013-11-20 18:11:39 -0800668if [ ! "$runtime" = "jvm" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700669 run_args+=(--lib "$lib")
Jeff Hao201803f2013-11-20 18:11:39 -0800670fi
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700671
Jeff Hao201803f2013-11-20 18:11:39 -0800672if [ "$runtime" = "dalvik" ]; then
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700673 if [ "$target_mode" = "no" ]; then
Nicolas Geoffray93d68462018-01-02 11:59:45 +0000674 framework="${ANDROID_PRODUCT_OUT}/system/framework"
Victor Chang759845f2019-08-06 16:04:36 +0100675 bpath="${framework}/core-icu4j.jar:${framework}/core-libart.jar:${framework}/core-oj.jar:${framework}/conscrypt.jar:${framework}/okhttp.jar:${framework}/bouncycastle.jar:${framework}/ext.jar"
Andreas Gampe11410de2019-07-02 15:53:53 -0700676 run_args+=(--boot --runtime-option "-Xbootclasspath:${bpath}")
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700677 else
678 true # defaults to using target BOOTCLASSPATH
679 fi
Jeff Hao201803f2013-11-20 18:11:39 -0800680elif [ "$runtime" = "art" ]; then
Xueliang Zhong48ca6a62019-03-07 14:48:55 +0000681 if [ "$target_mode" = "no" ] && [ "$simulator_mode" = "no" ]; then
David Brazdil853a4c32015-09-28 16:15:50 +0100682 guess_host_arch_name
David Srbecky928d28e2020-04-01 17:50:51 +0100683 run_args+=(--boot "${ANDROID_HOST_OUT}/apex/com.android.art/javalib/boot.art")
Andreas Gampe11410de2019-07-02 15:53:53 -0700684 run_args+=(--runtime-option "-Djava.library.path=${host_lib_root}/lib${suffix64}:${host_lib_root}/nativetest${suffix64}")
Xueliang Zhong48ca6a62019-03-07 14:48:55 +0000685 elif [ "$simulator_mode" = "yes" ]; then
686 run_args+=(--simulate-isa "arm64")
687 run_args+=(--boot "${ANDROID_PRODUCT_OUT}/system/apex/com.android.art.testing/javalib/boot.art")
688 run_args+=(--runtime-option "-Djava.library.path=${host_lib_root}/lib${suffix64}:${host_lib_root}/nativetest${suffix64}")
Jeff Hao201803f2013-11-20 18:11:39 -0800689 else
David Brazdil853a4c32015-09-28 16:15:50 +0100690 guess_target_arch_name
Andreas Gampe11410de2019-07-02 15:53:53 -0700691 run_args+=(--runtime-option "-Djava.library.path=/data/nativetest${suffix64}/art/${target_arch_name}")
David Srbecky928d28e2020-04-01 17:50:51 +0100692 run_args+=(--boot "/apex/com.android.art/javalib/boot.art")
Jeff Hao201803f2013-11-20 18:11:39 -0800693 fi
Alex Lighta59dd802014-07-02 16:28:08 -0700694 if [ "$relocate" = "yes" ]; then
Andreas Gampe11410de2019-07-02 15:53:53 -0700695 run_args+=(--relocate)
Alex Lighta59dd802014-07-02 16:28:08 -0700696 else
Andreas Gampe11410de2019-07-02 15:53:53 -0700697 run_args+=(--no-relocate)
Alex Lighta59dd802014-07-02 16:28:08 -0700698 fi
Andreas Gampe3f1dc562015-05-18 15:52:22 -0700699elif [ "$runtime" = "jvm" ]; then
700 # TODO: Detect whether the host is 32-bit or 64-bit.
Andreas Gampe11410de2019-07-02 15:53:53 -0700701 run_args+=(--runtime-option "-Djava.library.path=${ANDROID_HOST_OUT}/lib64:${ANDROID_HOST_OUT}/nativetest64")
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700702fi
703
Alex Light03a112d2014-08-25 13:25:56 -0700704if [ "$have_image" = "no" ]; then
Alex Light1ef4ce82014-08-27 11:13:47 -0700705 if [ "$runtime" != "art" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700706 err_echo "--no-image is only supported on the art runtime"
Alex Light1ef4ce82014-08-27 11:13:47 -0700707 exit 1
708 fi
Andreas Gampe11410de2019-07-02 15:53:53 -0700709 run_args+=(--no-image)
Alex Light03a112d2014-08-25 13:25:56 -0700710fi
711
Alex Light8d94ddd2019-12-18 11:13:03 -0800712if [ "$create_runner" = "yes" -a "$target_mode" = "yes" ]; then
713 err_echo "--create-runner does not function for non --host tests"
714 usage="yes"
715fi
716
jeffhao5d1ac922011-09-29 17:41:15 -0700717if [ "$dev_mode" = "yes" -a "$update_mode" = "yes" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700718 err_echo "--dev and --update are mutually exclusive"
719 usage="yes"
720fi
721
722if [ "$dev_mode" = "yes" -a "$quiet" = "yes" ]; then
723 err_echo "--dev and --quiet are mutually exclusive"
jeffhao5d1ac922011-09-29 17:41:15 -0700724 usage="yes"
725fi
726
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700727if [ "$bisection_search" = "yes" -a "$prebuild_mode" = "yes" ]; then
728 err_echo "--bisection-search and --prebuild are mutually exclusive"
729 usage="yes"
730fi
731
Roland Levillain76cfe612017-10-30 13:14:28 +0000732# TODO: Chroot-based bisection search is not supported yet (see below); implement it.
733if [ "$bisection_search" = "yes" -a -n "$chroot" ]; then
734 err_echo "--chroot with --bisection-search is unsupported"
735 exit 1
736fi
737
jeffhao5d1ac922011-09-29 17:41:15 -0700738if [ "$usage" = "no" ]; then
739 if [ "x$1" = "x" -o "x$1" = "x-" ]; then
740 test_dir=`basename "$oldwd"`
741 else
742 test_dir="$1"
743 fi
744
745 if [ '!' -d "$test_dir" ]; then
746 td2=`echo ${test_dir}-*`
747 if [ '!' -d "$td2" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700748 err_echo "${test_dir}: no such test directory"
jeffhao5d1ac922011-09-29 17:41:15 -0700749 usage="yes"
750 fi
751 test_dir="$td2"
752 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700753 # Shift to get rid of the test name argument. The rest of the arguments
754 # will get passed to the test run.
755 shift
756fi
757
758if [ "$usage" = "yes" ]; then
759 prog=`basename $prog`
760 (
761 echo "usage:"
762 echo " $prog --help Print this message."
763 echo " $prog [options] [test-name] Run test normally."
764 echo " $prog --dev [options] [test-name] Development mode" \
765 "(dumps to stdout)."
Alex Light8d94ddd2019-12-18 11:13:03 -0800766 echo " $prog --create-runner [options] [test-name]"
767 echo " Creates a runner script for use with other " \
768 "tools (e.g. parallel_run.py)."
769 echo " The script will only run the test portion, and " \
770 "share oat and dex files."
jeffhao5d1ac922011-09-29 17:41:15 -0700771 echo " $prog --update [options] [test-name] Update mode" \
772 "(replaces expected.txt)."
773 echo ' Omitting the test name or specifying "-" will use the' \
774 "current directory."
775 echo " Runtime Options:"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000776 echo " -O Run non-debug rather than debug build (off by default)."
777 echo " -Xcompiler-option Pass an option to the compiler."
Orion Hodsone1fb77f2017-02-27 13:57:18 +0000778 echo " --build-option Pass an option to the build script."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000779 echo " --runtime-option Pass an option to the runtime."
Mathieu Chartierdcd56c92017-11-20 20:30:24 -0800780 echo " --compact-dex-level Specify a compact dex level to the compiler."
Alex Lightc281ba52017-10-11 11:35:55 -0700781 echo " --debug Wait for the default debugger to attach."
782 echo " --debug-agent <agent-path>"
783 echo " Wait for the given debugger agent to attach. Currently"
784 echo " only supported on host."
785 echo " --debug-wrap-agent use libwrapagentproperties and tools/libjdwp-compat.props"
786 echo " to load the debugger agent specified by --debug-agent."
Alex Light0e151e72017-10-25 10:50:35 -0700787 echo " --with-agent <agent> Run the test with the given agent loaded with -agentpath:"
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000788 echo " --debuggable Whether to compile Java code for a debugger."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000789 echo " --gdb Run under gdb; incompatible with some tests."
Alex Lighte4b4a182019-02-12 14:19:49 -0800790 echo " --gdbserver Start gdbserver (defaults to port :5039)."
791 echo " --gdbserver-port <port>"
792 echo " Start gdbserver with the given COMM (see man gdbserver)."
793 echo " --gdbserver-bin <binary>"
794 echo " Use the given binary as gdbserver."
795 echo " --gdb-arg Pass an option to gdb or gdbserver."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000796 echo " --build-only Build test files only (off by default)."
797 echo " --interpreter Enable interpreter only mode (off by default)."
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800798 echo " --jit Enable jit (off by default)."
Nicolas Geoffray0e071252015-03-21 13:43:15 +0000799 echo " --optimizing Enable optimizing compiler (default)."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000800 echo " --no-verify Turn off verification (on by default)."
Igor Murashkin7617abd2015-07-10 18:27:47 -0700801 echo " --verify-soft-fail Force soft fail verification (off by default)."
802 echo " Verification is enabled if neither --no-verify"
803 echo " nor --verify-soft-fail is specified."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000804 echo " --no-optimize Turn off optimization (on by default)."
805 echo " --no-precise Turn off precise GC (on by default)."
806 echo " --zygote Spawn the process from the Zygote." \
jeffhao5d1ac922011-09-29 17:41:15 -0700807 "If used, then the"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000808 echo " other runtime options are ignored."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000809 echo " --prebuild Run dex2oat on the files before starting test. (default)"
810 echo " --no-prebuild Do not run dex2oat on the files before starting"
811 echo " the test."
Richard Uhler76f5cb62016-04-04 13:30:16 -0700812 echo " --strip-dex Strip the dex files before starting test."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000813 echo " --relocate Force the use of relocating in the test, making"
814 echo " the image and oat files be relocated to a random"
Nicolas Geoffray94e25db2017-01-27 14:54:28 +0000815 echo " address before running."
816 echo " --no-relocate Force the use of no relocating in the test. (default)"
Alex Lightfadfee92015-10-28 09:40:10 -0700817 echo " --image Run the test using a precompiled boot image. (default)"
818 echo " --no-image Run the test without a precompiled boot image."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000819 echo " --host Use the host-mode virtual machine."
820 echo " --invoke-with Pass --invoke-with option to runtime."
821 echo " --dalvik Use Dalvik (off by default)."
822 echo " --jvm Use a host-local RI virtual machine."
Alex Lighteb7c1442015-08-31 13:17:42 -0700823 echo " --use-java-home Use the JAVA_HOME environment variable"
824 echo " to find the java compiler and runtime"
825 echo " (if applicable) to run the test with."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000826 echo " --output-path [path] Location where to store the build" \
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700827 "files."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000828 echo " --64 Run the test in 64-bit mode"
Alex Light680cbf22018-10-31 11:00:19 -0700829 echo " --bionic Use the (host, 64-bit only) linux_bionic libc runtime"
Alex Light20802ca2018-12-05 15:36:03 -0800830 echo " --runtime-zipapex [file]"
831 echo " Use the given zipapex file to provide runtime binaries"
Alex Light6f342dd2019-03-27 17:15:42 +0000832 echo " --runtime-extracted-zipapex [dir]"
833 echo " Use the given extracted zipapex directory to provide"
834 echo " runtime binaries"
Martin Stjernholm4815e722019-09-24 16:20:09 +0100835 echo " --timeout n Test timeout in seconds"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000836 echo " --trace Run with method tracing"
Alex Lightfadfee92015-10-28 09:40:10 -0700837 echo " --strace Run with syscall tracing from strace."
Andreas Gampe7526d782015-06-22 22:53:45 -0700838 echo " --stream Run method tracing in streaming mode (requires --trace)"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000839 echo " --gcstress Run with gc stress testing"
840 echo " --gcverify Run with gc verification"
Alex Lightb7edcda2017-04-27 13:20:31 -0700841 echo " --jvmti-trace-stress Run with jvmti method tracing stress testing"
Alex Lightc38c3692017-06-27 15:45:14 -0700842 echo " --jvmti-step-stress Run with jvmti single step stress testing"
Alex Lightb7edcda2017-04-27 13:20:31 -0700843 echo " --jvmti-redefine-stress"
844 echo " Run with jvmti method redefinition stress testing"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000845 echo " --always-clean Delete the test files even if the test fails."
Igor Murashkin05f30e12015-06-10 15:57:17 -0700846 echo " --never-clean Keep the test files even if the test succeeds."
Roland Levillain76cfe612017-10-30 13:14:28 +0000847 echo " --chroot [newroot] Run with root directory set to newroot."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000848 echo " --android-root [path] The path on target for the android root. (/system by default)."
Victor Chang64611242019-07-05 16:32:41 +0100849 echo " --android-i18n-root [path]"
850 echo " The path on target for the i18n module root."
851 echo " (/apex/com.android.i18n by default)."
Martin Stjernholme58624f2019-09-20 15:53:40 +0100852 echo " --android-art-root [path]"
853 echo " The path on target for the ART module root."
Martin Stjernholmd6be5da2019-07-16 17:14:46 +0100854 echo " (/apex/com.android.art by default)."
Roland Levillain90b34572019-06-14 15:23:15 +0100855 echo " --android-tzdata-root [path]"
856 echo " The path on target for the Android Time Zone Data root."
857 echo " (/apex/com.android.tzdata by default)."
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000858 echo " --dex2oat-swap Use a dex2oat swap file."
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700859 echo " --instruction-set-features [string]"
860 echo " Set instruction-set-features for compilation."
Alex Light91de25f2015-10-28 17:00:06 -0700861 echo " --quiet Don't print anything except failure messages"
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700862 echo " --bisection-search Perform bisection bug search."
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000863 echo " --vdex Test using vdex as in input to dex2oat. Only works with --prebuild."
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800864 echo " --suspend-timeout Change thread suspend timeout ms (default 500000)."
Shubham Ajmera981d99c2017-08-17 14:11:08 -0700865 echo " --dex2oat-jobs Number of dex2oat jobs."
Alex Light91de25f2015-10-28 17:00:06 -0700866 ) 1>&2 # Direct to stderr so usage is not printed if --quiet is set.
jeffhao5d1ac922011-09-29 17:41:15 -0700867 exit 1
868fi
869
870cd "$test_dir"
871test_dir=`pwd`
872
873td_info="${test_dir}/${info}"
874td_expected="${test_dir}/${expected}"
875
Brian Carlstrom22469aa2012-09-07 10:34:57 -0700876if [ ! -r $td_info ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700877 err_echo "${test_dir}: missing file $td_info"
Brian Carlstrom22469aa2012-09-07 10:34:57 -0700878 exit 1
879fi
880
881if [ ! -r $td_expected ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700882 err_echo "${test_dir}: missing file $td_expected"
jeffhao5d1ac922011-09-29 17:41:15 -0700883 exit 1
884fi
885
886# copy the test to a temp dir and run it
887
Elliott Hughes510c8782011-10-06 10:57:34 -0700888echo "${test_dir}: building..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700889
890rm -rf "$tmp_dir"
Alex Light0aa7a5a2018-10-10 15:58:14 +0000891cp -LRp "$test_dir" "$tmp_dir"
jeffhao5d1ac922011-09-29 17:41:15 -0700892cd "$tmp_dir"
893
894if [ '!' -r "$build" ]; then
895 cp "${progdir}/etc/default-build" build
Zheng Xuc6667102015-05-15 16:08:45 +0800896else
897 cp "${progdir}/etc/default-build" .
jeffhao5d1ac922011-09-29 17:41:15 -0700898fi
899
900if [ '!' -r "$run" ]; then
901 cp "${progdir}/etc/default-run" run
Zheng Xuc6667102015-05-15 16:08:45 +0800902else
903 cp "${progdir}/etc/default-run" .
jeffhao5d1ac922011-09-29 17:41:15 -0700904fi
905
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700906if [ '!' -r "$check_cmd" ]; then
907 cp "${progdir}/etc/default-check" check
Zheng Xuc6667102015-05-15 16:08:45 +0800908else
909 cp "${progdir}/etc/default-check" .
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700910fi
911
jeffhao5d1ac922011-09-29 17:41:15 -0700912chmod 755 "$build"
913chmod 755 "$run"
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700914chmod 755 "$check_cmd"
jeffhao5d1ac922011-09-29 17:41:15 -0700915
Elliott Hughes8cbc8bc2011-10-04 11:19:45 -0700916export TEST_NAME=`basename ${test_dir}`
917
Nicolas Geoffray1949baf2017-10-17 12:14:53 +0000918# Tests named '<number>-checker-*' will also have their CFGs verified with
919# Checker when compiled with Optimizing on host.
920if [[ "$TEST_NAME" =~ ^[0-9]+-checker- ]]; then
Nicolas Geoffray8c41a0b2020-02-06 16:52:11 +0000921 if [ "$runtime" = "art" -a "$run_optimizing" = "true" ]; then
Nicolas Geoffray1949baf2017-10-17 12:14:53 +0000922 # In no-prebuild or no-image mode, the compiler only quickens so disable the checker.
923 if [ "$prebuild_mode" = "yes" -a "$have_image" = "yes" ]; then
924 run_checker="yes"
925
Xueliang Zhong48ca6a62019-03-07 14:48:55 +0000926 if [ "$simulator_mode" = "yes" ]; then
927 cfg_output_dir="$tmp_dir"
928 checker_args="--arch=ARM64"
929 elif [ "$target_mode" = "no" ]; then
Nicolas Geoffray1949baf2017-10-17 12:14:53 +0000930 cfg_output_dir="$tmp_dir"
931 checker_args="--arch=${host_arch_name^^}"
932 else
933 cfg_output_dir="$DEX_LOCATION"
934 checker_args="--arch=${target_arch_name^^}"
935 fi
936
937 if [ "$debuggable" = "yes" ]; then
938 checker_args="$checker_args --debuggable"
939 fi
940
Andreas Gampe11410de2019-07-02 15:53:53 -0700941 run_args+=(-Xcompiler-option "--dump-cfg=$cfg_output_dir/$cfg_output" -Xcompiler-option -j1)
Nicolas Geoffray1949baf2017-10-17 12:14:53 +0000942 fi
943 fi
944fi
945
Andreas Gampe11410de2019-07-02 15:53:53 -0700946run_args+=(--testlib "${testlib}")
Mathieu Chartier031768a2015-08-27 10:25:02 -0700947
Alex Light20802ca2018-12-05 15:36:03 -0800948if ! ulimit -f ${file_ulimit}; then
Richard Uhler020c0f32017-03-14 16:23:17 +0000949 err_echo "ulimit file size setting failed"
Ian Rogers997f0f92014-06-21 22:58:05 -0700950fi
951
Igor Murashkin2de6e082018-02-28 15:25:23 -0800952# Tell the build script which mode (target, host, jvm) we are building for
953# to determine the bootclasspath at build time.
Igor Murashkin2a337752017-06-16 14:34:40 +0000954if [[ "$target_mode" == "yes" ]]; then
955 build_args="$build_args --target"
956else
Igor Murashkin2de6e082018-02-28 15:25:23 -0800957 if [[ $runtime == "jvm" ]]; then
958 build_args="$build_args --jvm"
959 else
960 build_args="$build_args --host"
961 fi
Igor Murashkin2a337752017-06-16 14:34:40 +0000962fi
963
964if [[ "$dev_mode" == "yes" ]]; then
965 build_args="$build_args --dev"
966fi
967
jeffhao5d1ac922011-09-29 17:41:15 -0700968good="no"
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000969good_build="yes"
970good_run="yes"
Alex Light77fee872017-09-05 14:51:49 -0700971export TEST_RUNTIME="${runtime}"
jeffhao5d1ac922011-09-29 17:41:15 -0700972if [ "$dev_mode" = "yes" ]; then
David Brazdil4846d132015-01-15 19:07:08 +0000973 "./${build}" $build_args 2>&1
Elliott Hughes7ab3a2a2012-06-18 16:34:20 -0700974 build_exit="$?"
975 echo "build exit status: $build_exit" 1>&2
976 if [ "$build_exit" = '0' ]; then
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800977 echo "${test_dir}: running..." 1>&2
Andreas Gampe11410de2019-07-02 15:53:53 -0700978 "./${run}" "${run_args[@]}" "$@" 2>&1
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700979 run_exit="$?"
Calin Juravle3cf48772015-01-26 16:47:33 +0000980
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800981 if [ "$run_exit" = "0" ]; then
Calin Juravle3cf48772015-01-26 16:47:33 +0000982 if [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100983 if [ "$target_mode" = "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +0000984 adb pull "$chroot/$cfg_output_dir/$cfg_output" &> /dev/null
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100985 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100986 "$checker" $checker_args "$cfg_output" "$tmp_dir" 2>&1
Calin Juravle3cf48772015-01-26 16:47:33 +0000987 checker_exit="$?"
988 if [ "$checker_exit" = "0" ]; then
989 good="yes"
990 fi
Alex Light91de25f2015-10-28 17:00:06 -0700991 err_echo "checker exit status: $checker_exit"
Calin Juravle3cf48772015-01-26 16:47:33 +0000992 else
993 good="yes"
994 fi
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800995 fi
Calin Juravle3cf48772015-01-26 16:47:33 +0000996 echo "run exit status: $run_exit" 1>&2
Elliott Hughes7ab3a2a2012-06-18 16:34:20 -0700997 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700998elif [ "$update_mode" = "yes" ]; then
David Brazdil4846d132015-01-15 19:07:08 +0000999 "./${build}" $build_args >"$build_output" 2>&1
jeffhao5d1ac922011-09-29 17:41:15 -07001000 build_exit="$?"
1001 if [ "$build_exit" = '0' ]; then
Elliott Hughes2bfc6732012-11-27 20:40:51 -08001002 echo "${test_dir}: running..." 1>&2
Andreas Gampe11410de2019-07-02 15:53:53 -07001003 "./${run}" "${run_args[@]}" "$@" >"$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +00001004 if [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +01001005 if [ "$target_mode" = "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +00001006 adb pull "$chroot/$cfg_output_dir/$cfg_output" &> /dev/null
Alexandre Rames5e2c8d32015-08-06 14:49:28 +01001007 fi
David Brazdil5cc343d2015-10-08 11:35:32 +01001008 "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >> "$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +00001009 fi
jeffhao5d1ac922011-09-29 17:41:15 -07001010 sed -e 's/[[:cntrl:]]$//g' < "$output" >"${td_expected}"
1011 good="yes"
1012 else
Alex Light91de25f2015-10-28 17:00:06 -07001013 cat "$build_output" 1>&${real_stderr} 1>&2
1014 err_echo "build exit status: $build_exit"
jeffhao5d1ac922011-09-29 17:41:15 -07001015 fi
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -07001016elif [ "$build_only" = "yes" ]; then
1017 good="yes"
David Brazdil4846d132015-01-15 19:07:08 +00001018 "./${build}" $build_args >"$build_output" 2>&1
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -07001019 build_exit="$?"
1020 if [ "$build_exit" '!=' '0' ]; then
1021 cp "$build_output" "$output"
1022 echo "build exit status: $build_exit" >>"$output"
1023 diff --strip-trailing-cr -q "$expected" "$output" >/dev/null
1024 if [ "$?" '!=' "0" ]; then
1025 good="no"
Alex Light91de25f2015-10-28 17:00:06 -07001026 err_echo "BUILD FAILED For ${TEST_NAME}"
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -07001027 fi
1028 fi
Tsu Chiang Chuang379e2f52013-08-20 12:24:52 -07001029 # Clean up extraneous files that are not used by tests.
Tsu Chiang Chuang0160d992013-09-13 14:17:42 -07001030 find $tmp_dir -mindepth 1 ! -regex ".*/\(.*jar\|$output\|$expected\)" | xargs rm -rf
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -07001031 exit 0
jeffhao5d1ac922011-09-29 17:41:15 -07001032else
David Brazdil4846d132015-01-15 19:07:08 +00001033 "./${build}" $build_args >"$build_output" 2>&1
jeffhao5d1ac922011-09-29 17:41:15 -07001034 build_exit="$?"
1035 if [ "$build_exit" = '0' ]; then
Elliott Hughes2bfc6732012-11-27 20:40:51 -08001036 echo "${test_dir}: running..." 1>&2
Andreas Gampe11410de2019-07-02 15:53:53 -07001037 "./${run}" "${run_args[@]}" "$@" >"$output" 2>&1
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +00001038 run_exit="$?"
1039 if [ "$run_exit" != "0" ]; then
Alex Light91de25f2015-10-28 17:00:06 -07001040 err_echo "run exit status: $run_exit"
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +00001041 good_run="no"
David Brazdil4846d132015-01-15 19:07:08 +00001042 elif [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +01001043 if [ "$target_mode" = "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +00001044 adb pull "$chroot/$cfg_output_dir/$cfg_output" &> /dev/null
Alexandre Rames5e2c8d32015-08-06 14:49:28 +01001045 fi
David Brazdil5cc343d2015-10-08 11:35:32 +01001046 "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >> "$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +00001047 checker_exit="$?"
1048 if [ "$checker_exit" != "0" ]; then
Alex Light91de25f2015-10-28 17:00:06 -07001049 err_echo "checker exit status: $checker_exit"
David Brazdil4846d132015-01-15 19:07:08 +00001050 good_run="no"
1051 else
1052 good_run="yes"
1053 fi
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +00001054 else
1055 good_run="yes"
1056 fi
jeffhao5d1ac922011-09-29 17:41:15 -07001057 else
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +00001058 good_build="no"
jeffhao5d1ac922011-09-29 17:41:15 -07001059 cp "$build_output" "$output"
Andreas Gampef6930a82014-10-21 09:33:08 -07001060 echo "Failed to build in tmpdir=${tmp_dir} from oldwd=${oldwd} and cwd=`pwd`" >> "$output"
1061 echo "Non-canonical tmpdir was ${noncanonical_tmp_dir}" >> "$output"
Ian Rogersd9ad27d2014-10-27 13:48:21 -07001062 echo "Args: ${args}" >> "$output"
Andreas Gampef6930a82014-10-21 09:33:08 -07001063 echo "build exit status: $build_exit" >> "$output"
Andreas Gampe5c114902014-10-27 17:03:58 -07001064 max_name_length=$(getconf NAME_MAX ${tmp_dir})
1065 echo "Max filename (NAME_MAX): ${max_name_length}" >> "$output"
1066 max_path_length=$(getconf PATH_MAX ${tmp_dir})
Andreas Gampe602fbcd2014-10-27 17:06:29 -07001067 echo "Max pathlength (PATH_MAX): ${max_path_length}" >> "$output"
jeffhao5d1ac922011-09-29 17:41:15 -07001068 fi
Andreas Gampe1c83cbc2014-07-22 18:52:29 -07001069 ./$check_cmd "$expected" "$output"
jeffhao5d1ac922011-09-29 17:41:15 -07001070 if [ "$?" = "0" ]; then
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +00001071 if [ "$good_build" = "no" -o "$good_run" = "yes" ]; then
1072 # output == expected
1073 good="yes"
1074 echo "${test_dir}: succeeded!" 1>&2
1075 fi
jeffhao5d1ac922011-09-29 17:41:15 -07001076 fi
1077fi
1078
jeffhao5d1ac922011-09-29 17:41:15 -07001079(
Alex Lightbfac14a2014-07-30 09:41:21 -07001080 if [ "$good" != "yes" -a "$update_mode" != "yes" ]; then
jeffhao5d1ac922011-09-29 17:41:15 -07001081 echo "${test_dir}: FAILED!"
1082 echo ' '
1083 echo '#################### info'
1084 cat "${td_info}" | sed 's/^/# /g'
1085 echo '#################### diffs'
Nicolas Geoffray30a11eb2020-01-28 16:04:01 +00001086 if [ "$run_checker" == "yes" ]; then
1087 # Checker failures dump the whole CFG, so we output the whole diff.
1088 diff --strip-trailing-cr -u "$expected" "$output"
1089 else
Hans Boehm80dc7dc2020-03-10 15:56:42 -07001090 diff --strip-trailing-cr -u "$expected" "$output" | tail -n 10000
Nicolas Geoffray30a11eb2020-01-28 16:04:01 +00001091 fi
jeffhao5d1ac922011-09-29 17:41:15 -07001092 echo '####################'
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -07001093 if [ "$strace" = "yes" ]; then
1094 echo '#################### strace output'
Hiroshi Yamauchid630fd62015-09-04 12:52:03 -07001095 tail -n 3000 "$tmp_dir/$strace_output"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -07001096 echo '####################'
1097 fi
Andreas Gampee79ca192017-07-31 10:30:16 -07001098 if [ "x$target_mode" = "xno" -a "x$SANITIZE_HOST" = "xaddress" ]; then
1099 # Run the stack script to symbolize any ASAN aborts on the host for SANITIZE_HOST. The
1100 # tools used by the given ABI work for both x86 and x86-64.
1101 echo "ABI: 'x86_64'" | cat - "$output" | $ANDROID_BUILD_TOP/development/scripts/stack | tail -n 3000
1102 fi
jeffhao5d1ac922011-09-29 17:41:15 -07001103 echo ' '
1104 fi
Alex Lightbfac14a2014-07-30 09:41:21 -07001105
Alex Light91de25f2015-10-28 17:00:06 -07001106) 2>&${real_stderr} 1>&2
Alex Lightbfac14a2014-07-30 09:41:21 -07001107
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001108# Attempt bisection only if the test failed.
Roland Levillain76cfe612017-10-30 13:14:28 +00001109# TODO: Implement support for chroot-based bisection search.
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001110if [ "$bisection_search" = "yes" -a "$good" != "yes" ]; then
1111 # Bisecting works by skipping different optimization passes which breaks checker assertions.
1112 if [ "$run_checker" == "yes" ]; then
1113 echo "${test_dir}: not bisecting, checker test." 1>&2
1114 else
1115 # Increase file size limit, bisection search can generate large logfiles.
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001116 echo "${test_dir}: bisecting..." 1>&2
1117 cwd=`pwd`
1118 maybe_device_mode=""
1119 raw_cmd=""
1120 if [ "$target_mode" = "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +00001121 # Produce cmdline.sh in $chroot_dex_location. "$@" is passed as a runtime option
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001122 # so that cmdline.sh forwards its arguments to dalvikvm. invoke-with is set
1123 # to exec in order to preserve pid when calling dalvikvm. This is required
1124 # for bisection search to correctly retrieve logs from device.
Andreas Gampe11410de2019-07-02 15:53:53 -07001125 "./${run}" "${run_args[@]}" --runtime-option '"$@"' --invoke-with exec --dry-run "$@" &> /dev/null
Roland Levillain76cfe612017-10-30 13:14:28 +00001126 adb shell chmod u+x "$chroot_dex_location/cmdline.sh"
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001127 maybe_device_mode="--device"
1128 raw_cmd="$DEX_LOCATION/cmdline.sh"
1129 else
Andreas Gampe11410de2019-07-02 15:53:53 -07001130 raw_cmd="$cwd/${run} --external-log-tags "${run_args[@]}" $@"
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001131 fi
Roland Levillain76cfe612017-10-30 13:14:28 +00001132 # TODO: Pass a `--chroot` option to the bisection_search.py script and use it there.
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001133 $ANDROID_BUILD_TOP/art/tools/bisection_search/bisection_search.py \
1134 $maybe_device_mode \
1135 --raw-cmd="$raw_cmd" \
1136 --check-script="$cwd/check" \
1137 --expected-output="$cwd/expected.txt" \
Wojciech Staszkiewicz0c883832016-09-26 17:51:52 -07001138 --logfile="$cwd/bisection_log.txt" \
Martin Stjernholm4815e722019-09-24 16:20:09 +01001139 --timeout=${timeout:-300}
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -07001140 fi
1141fi
1142
Alex Lightbfac14a2014-07-30 09:41:21 -07001143# Clean up test files.
Igor Murashkin05f30e12015-06-10 15:57:17 -07001144if [ "$always_clean" = "yes" -o "$good" = "yes" ] && [ "$never_clean" = "no" ]; then
Alex Lightbfac14a2014-07-30 09:41:21 -07001145 cd "$oldwd"
1146 rm -rf "$tmp_dir"
1147 if [ "$target_mode" = "yes" -a "$build_exit" = "0" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +00001148 adb shell rm -rf $chroot_dex_location
Alex Lightbfac14a2014-07-30 09:41:21 -07001149 fi
1150 if [ "$good" = "yes" ]; then
1151 exit 0
1152 fi
1153fi
1154
1155
1156(
1157 if [ "$always_clean" = "yes" ]; then
1158 echo "${TEST_NAME} files deleted from host "
1159 if [ "$target_mode" == "yes" ]; then
1160 echo "and from target"
1161 fi
1162 else
1163 echo "${TEST_NAME} files left in ${tmp_dir} on host"
1164 if [ "$target_mode" == "yes" ]; then
Roland Levillain76cfe612017-10-30 13:14:28 +00001165 echo "and in ${chroot_dex_location} on target"
Alex Lightbfac14a2014-07-30 09:41:21 -07001166 fi
Brian Carlstrom105215d2012-06-14 12:50:44 -07001167 fi
1168
Alex Light91de25f2015-10-28 17:00:06 -07001169) 2>&${real_stderr} 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -07001170
Alex Light6a870fa2016-05-31 16:36:19 -07001171if [ "$never_clean" = "yes" ] && [ "$good" = "yes" ]; then
1172 exit 0
1173else
1174 exit 1
1175fi