blob: d04cd05e58f434d05168bff6ca2b922334e4b3f2 [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"
Alex Lightea1e7702016-07-11 13:39:55 -070044export JAVAC="javac -g -Xlint:-options"
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 Leung0afa07a2017-10-03 16:56:30 -070048export USE_D8="false"
Colin Crosse0ef0a82017-07-27 21:29:18 +000049export USE_JACK="false"
Igor Murashkin2a337752017-06-16 14:34:40 +000050export USE_DESUGAR="true"
Ben Gruver14fc9db2017-04-28 15:30:49 -070051export SMALI_ARGS=""
jeffhao5d1ac922011-09-29 17:41:15 -070052
Tsu Chiang Chuang4407e612012-07-19 16:13:43 -070053# If dx was not set by the environment variable, assume it is in the path.
54if [ -z "$DX" ]; then
55 export DX="dx"
56fi
57
Tsu Chiang Chuang6674f8a2013-01-16 15:41:21 -080058# If jasmin was not set by the environment variable, assume it is in the path.
59if [ -z "$JASMIN" ]; then
60 export JASMIN="jasmin"
61fi
62
Andreas Gampe8fda9f22014-10-03 16:15:37 -070063# If smali was not set by the environment variable, assume it is in the path.
64if [ -z "$SMALI" ]; then
65 export SMALI="smali"
66fi
67
68# If dexmerger was not set by the environment variable, assume it is in the path.
69if [ -z "$DXMERGER" ]; then
70 export DXMERGER="dexmerger"
71fi
72
Sebastien Hertz19ac0272015-02-24 17:39:50 +010073# If jack was not set by the environment variable, assume it is in the path.
74if [ -z "$JACK" ]; then
75 export JACK="jack"
76fi
77
Sebastien Hertz19ac0272015-02-24 17:39:50 +010078# ANDROID_BUILD_TOP is not set in a build environment.
79if [ -z "$ANDROID_BUILD_TOP" ]; then
80 export ANDROID_BUILD_TOP=$oldwd
81fi
82
Andreas Gampef47fb2f2016-06-24 22:30:29 -070083# ANDROID_HOST_OUT is not set in a build environment.
84if [ -z "$ANDROID_HOST_OUT" ]; then
Dan Willemsenf325e012017-03-03 12:35:30 -080085 export ANDROID_HOST_OUT=${OUT_DIR:-$ANDROID_BUILD_TOP/out}/host/linux-x86
Andreas Gampef47fb2f2016-06-24 22:30:29 -070086fi
87
Sebastien Hertz19ac0272015-02-24 17:39:50 +010088# If JACK_CLASSPATH is not set, assume it only contains core-libart.
89if [ -z "$JACK_CLASSPATH" ]; then
Andreas Gampef47fb2f2016-06-24 22:30:29 -070090 export JACK_CLASSPATH="${ANDROID_HOST_OUT}/../common/obj/JAVA_LIBRARIES/core-libart-hostdex_intermediates/classes.jack:${ANDROID_HOST_OUT}/../common/obj/JAVA_LIBRARIES/core-oj-hostdex_intermediates/classes.jack"
Sebastien Hertz19ac0272015-02-24 17:39:50 +010091fi
92
Sebastien Hertz19ac0272015-02-24 17:39:50 +010093export JACK="$JACK -g -cp $JACK_CLASSPATH"
Tsu Chiang Chuang6674f8a2013-01-16 15:41:21 -080094
Igor Murashkine5181932017-06-15 16:03:50 -070095# Allow changing DESUGAR script to something else, or to disable it with DESUGAR=false.
Igor Murashkind3232772017-06-22 14:54:13 -070096if [ -z "$DESUGAR" ]; then
Igor Murashkine5181932017-06-15 16:03:50 -070097 export DESUGAR="$ANDROID_BUILD_TOP/art/tools/desugar.sh"
98fi
99
Igor Murashkin271a0f82017-02-14 21:14:17 +0000100# Zipalign is not on the PATH in some configs, auto-detect it.
101if [ -z "$ZIPALIGN" ]; then
102 if which zipalign >/dev/null; then
103 ZIPALIGN="zipalign";
104 else
105 # TODO: Add a dependency for zipalign in Android.run-test.mk
106 # once it doesn't depend on libandroidfw (b/35246701)
107 case "$OSTYPE" in
108 darwin*) ZIPALIGN="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/darwin/bin/zipalign" ;;
109 linux*) ZIPALIGN="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/linux/bin/zipalign" ;;
110 *) echo "Can't find zipalign: unknown: $OSTYPE" >&2;;
111 esac
112 fi
113fi
114export ZIPALIGN
115
jeffhao5d1ac922011-09-29 17:41:15 -0700116info="info.txt"
117build="build"
118run="run"
119expected="expected.txt"
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700120check_cmd="check"
jeffhao5d1ac922011-09-29 17:41:15 -0700121output="output.txt"
122build_output="build-output.txt"
David Brazdil24128c62015-05-21 12:06:13 +0100123cfg_output="graph.cfg"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700124strace_output="strace-output.txt"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700125lib="libartd.so"
Mathieu Chartier031768a2015-08-27 10:25:02 -0700126testlib="arttestd"
jeffhao5d1ac922011-09-29 17:41:15 -0700127run_args="--quiet"
David Brazdil4846d132015-01-15 19:07:08 +0000128build_args=""
jeffhao5d1ac922011-09-29 17:41:15 -0700129
Alex Light91de25f2015-10-28 17:00:06 -0700130quiet="no"
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000131debuggable="no"
Alex Light9d722532014-07-22 18:07:12 -0700132prebuild_mode="yes"
Brian Carlstrom2613de42012-06-15 17:37:16 -0700133target_mode="yes"
jeffhao5d1ac922011-09-29 17:41:15 -0700134dev_mode="no"
135update_mode="no"
Alex Lighta59dd802014-07-02 16:28:08 -0700136debug_mode="no"
Nicolas Geoffray94e25db2017-01-27 14:54:28 +0000137relocate="no"
Jeff Hao201803f2013-11-20 18:11:39 -0800138runtime="art"
jeffhao5d1ac922011-09-29 17:41:15 -0700139usage="no"
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700140build_only="no"
Andreas Gampe2fe07922014-04-21 07:50:39 -0700141suffix64=""
Jeff Hao85139a32014-07-23 11:52:52 -0700142trace="false"
Andreas Gampe7526d782015-06-22 22:53:45 -0700143trace_stream="false"
Alex Lighte7873ec2014-08-12 09:53:50 -0700144basic_verify="false"
145gc_verify="false"
146gc_stress="false"
Alex Lightb7edcda2017-04-27 13:20:31 -0700147jvmti_trace_stress="false"
Alex Light43e935d2017-06-19 15:40:40 -0700148jvmti_field_stress="false"
Alex Lightc38c3692017-06-27 15:45:14 -0700149jvmti_step_stress="false"
Alex Lightb7edcda2017-04-27 13:20:31 -0700150jvmti_redefine_stress="false"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700151strace="false"
Alex Lightbfac14a2014-07-30 09:41:21 -0700152always_clean="no"
Igor Murashkin05f30e12015-06-10 15:57:17 -0700153never_clean="no"
Alex Light03a112d2014-08-25 13:25:56 -0700154have_dex2oat="yes"
155have_patchoat="yes"
156have_image="yes"
Jeff Haodcdc85b2015-12-04 14:06:18 -0800157multi_image_suffix=""
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000158android_root="/system"
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700159bisection_search="no"
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800160suspend_timeout="500000"
Alex Light10bc5a42016-05-10 10:01:22 -0700161# By default we will use optimizing.
162image_args=""
Nicolas Geoffrayb76bc782016-09-14 12:33:34 +0000163image_suffix=""
jeffhao5d1ac922011-09-29 17:41:15 -0700164
165while true; do
166 if [ "x$1" = "x--host" ]; then
Brian Carlstrom2613de42012-06-15 17:37:16 -0700167 target_mode="no"
TDYa127b92bcab2012-04-08 00:09:51 -0700168 DEX_LOCATION=$tmp_dir
Nicolas Geoffray1a58b7f2014-10-06 12:23:04 +0100169 run_args="${run_args} --host"
jeffhao5d1ac922011-09-29 17:41:15 -0700170 shift
Alex Light91de25f2015-10-28 17:00:06 -0700171 elif [ "x$1" = "x--quiet" ]; then
172 quiet="yes"
173 shift
Alex Lighteb7c1442015-08-31 13:17:42 -0700174 elif [ "x$1" = "x--use-java-home" ]; then
175 if [ -n "${JAVA_HOME}" ]; then
176 export JAVA="${JAVA_HOME}/bin/java"
177 export JAVAC="${JAVA_HOME}/bin/javac -g"
178 else
179 echo "Passed --use-java-home without JAVA_HOME variable set!"
180 usage="yes"
181 fi
182 shift
Elliott Hughes58bcc402012-02-14 14:10:10 -0800183 elif [ "x$1" = "x--jvm" ]; then
Brian Carlstrom2613de42012-06-15 17:37:16 -0700184 target_mode="no"
Alex Light2c7aaeb2017-01-27 14:08:17 -0800185 DEX_LOCATION="$tmp_dir"
Jeff Hao201803f2013-11-20 18:11:39 -0800186 runtime="jvm"
Alex Lightbc90d0f2016-05-09 16:21:09 -0700187 image_args=""
Brian Carlstrom01afdba2014-10-03 10:28:47 -0700188 prebuild_mode="no"
Elliott Hughesc717eef2012-06-15 16:01:26 -0700189 NEED_DEX="false"
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100190 USE_JACK="false"
Nicolas Geoffray288a4a22014-10-07 11:02:40 +0100191 run_args="${run_args} --jvm"
Alex Lighteb7c1442015-08-31 13:17:42 -0700192 build_args="${build_args} --jvm"
jeffhao5d1ac922011-09-29 17:41:15 -0700193 shift
Elliott Hughes58bcc402012-02-14 14:10:10 -0800194 elif [ "x$1" = "x-O" ]; then
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700195 lib="libart.so"
Mathieu Chartier031768a2015-08-27 10:25:02 -0700196 testlib="arttest"
Alex Lightfaf90b62016-08-12 14:43:48 -0700197 run_args="${run_args} -O"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700198 shift
199 elif [ "x$1" = "x--dalvik" ]; then
200 lib="libdvm.so"
Jeff Hao201803f2013-11-20 18:11:39 -0800201 runtime="dalvik"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700202 shift
Alex Light03a112d2014-08-25 13:25:56 -0700203 elif [ "x$1" = "x--no-dex2oat" ]; then
204 have_dex2oat="no"
205 shift
206 elif [ "x$1" = "x--no-patchoat" ]; then
207 have_patchoat="no"
208 shift
209 elif [ "x$1" = "x--no-image" ]; then
210 have_image="no"
211 shift
Jeff Haodcdc85b2015-12-04 14:06:18 -0800212 elif [ "x$1" = "x--multi-image" ]; then
213 multi_image_suffix="-multi"
214 shift
Andreas Gampec23c9c92014-10-28 14:47:25 -0700215 elif [ "x$1" = "x--pic-test" ]; then
216 run_args="${run_args} --pic-test"
217 shift
Alex Lighta59dd802014-07-02 16:28:08 -0700218 elif [ "x$1" = "x--relocate" ]; then
219 relocate="yes"
220 shift
221 elif [ "x$1" = "x--no-relocate" ]; then
222 relocate="no"
223 shift
224 elif [ "x$1" = "x--prebuild" ]; then
Nicolas Geoffray5fd18ba2014-10-03 12:08:38 +0100225 run_args="${run_args} --prebuild"
Alex Lighta59dd802014-07-02 16:28:08 -0700226 prebuild_mode="yes"
227 shift;
Richard Uhler76f5cb62016-04-04 13:30:16 -0700228 elif [ "x$1" = "x--strip-dex" ]; then
229 run_args="${run_args} --strip-dex"
230 shift;
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000231 elif [ "x$1" = "x--debuggable" ]; then
232 run_args="${run_args} -Xcompiler-option --debuggable"
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000233 debuggable="yes"
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000234 shift;
Alex Lighta59dd802014-07-02 16:28:08 -0700235 elif [ "x$1" = "x--no-prebuild" ]; then
Nicolas Geoffray5fd18ba2014-10-03 12:08:38 +0100236 run_args="${run_args} --no-prebuild"
Alex Lighta59dd802014-07-02 16:28:08 -0700237 prebuild_mode="no"
238 shift;
Alex Lighte7873ec2014-08-12 09:53:50 -0700239 elif [ "x$1" = "x--gcverify" ]; then
240 basic_verify="true"
241 gc_verify="true"
242 shift
243 elif [ "x$1" = "x--gcstress" ]; then
244 basic_verify="true"
245 gc_stress="true"
246 shift
Alex Lightc38c3692017-06-27 15:45:14 -0700247 elif [ "x$1" = "x--jvmti-step-stress" ]; then
248 jvmti_step_stress="true"
249 shift
Alex Lightb7edcda2017-04-27 13:20:31 -0700250 elif [ "x$1" = "x--jvmti-redefine-stress" ]; then
251 jvmti_redefine_stress="true"
252 shift
Alex Light43e935d2017-06-19 15:40:40 -0700253 elif [ "x$1" = "x--jvmti-field-stress" ]; then
254 jvmti_field_stress="true"
255 shift
Alex Lightb7edcda2017-04-27 13:20:31 -0700256 elif [ "x$1" = "x--jvmti-trace-stress" ]; then
257 jvmti_trace_stress="true"
Alex Light8f2c6d42017-04-10 16:27:35 -0700258 shift
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800259 elif [ "x$1" = "x--suspend-timeout" ]; then
260 shift
261 suspend_timeout="$1"
262 shift
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700263 elif [ "x$1" = "x--image" ]; then
264 shift
265 image="$1"
266 run_args="${run_args} --image $image"
Elliott Hughes7c046102011-10-19 18:16:03 -0700267 shift
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000268 elif [ "x$1" = "x-Xcompiler-option" ]; then
269 shift
270 option="$1"
271 run_args="${run_args} -Xcompiler-option $option"
272 shift
Orion Hodsone1fb77f2017-02-27 13:57:18 +0000273 elif [ "x$1" = "x--build-option" ]; then
274 shift
275 option="$1"
276 build_args="${build_args} $option"
277 shift
Mathieu Chartier769a5ad2014-05-18 15:30:10 -0700278 elif [ "x$1" = "x--runtime-option" ]; then
279 shift
280 option="$1"
281 run_args="${run_args} --runtime-option $option"
282 shift
Mathieu Chartierc0a8a802014-10-17 15:58:01 -0700283 elif [ "x$1" = "x--gdb-arg" ]; then
284 shift
285 gdb_arg="$1"
286 run_args="${run_args} --gdb-arg $gdb_arg"
287 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700288 elif [ "x$1" = "x--debug" ]; then
289 run_args="${run_args} --debug"
290 shift
291 elif [ "x$1" = "x--gdb" ]; then
292 run_args="${run_args} --gdb"
293 dev_mode="yes"
294 shift
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700295 elif [ "x$1" = "x--strace" ]; then
296 strace="yes"
Mathieu Chartier2576be22016-05-24 10:24:53 -0700297 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 -0700298 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700299 elif [ "x$1" = "x--zygote" ]; then
300 run_args="${run_args} --zygote"
301 shift
jeffhao0dff3f42012-11-20 15:13:43 -0800302 elif [ "x$1" = "x--interpreter" ]; then
Nicolas Geoffray4650c932016-05-10 09:13:13 +0000303 run_args="${run_args} --interpreter"
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700304 image_suffix="-interpreter"
305 shift
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800306 elif [ "x$1" = "x--jit" ]; then
Alex Light10bc5a42016-05-10 10:01:22 -0700307 image_args="--jit"
Nicolas Geoffrayb76bc782016-09-14 12:33:34 +0000308 image_suffix="-interpreter"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800309 shift
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700310 elif [ "x$1" = "x--optimizing" ]; then
Alex Light10bc5a42016-05-10 10:01:22 -0700311 image_args="-Xcompiler-option --compiler-backend=Optimizing"
jeffhao0dff3f42012-11-20 15:13:43 -0800312 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700313 elif [ "x$1" = "x--no-verify" ]; then
Richard Uhlerf4b34872016-04-13 11:03:46 -0700314 run_args="${run_args} --no-verify"
jeffhao5d1ac922011-09-29 17:41:15 -0700315 shift
Igor Murashkin7617abd2015-07-10 18:27:47 -0700316 elif [ "x$1" = "x--verify-soft-fail" ]; then
Alex Light10bc5a42016-05-10 10:01:22 -0700317 image_args="--verify-soft-fail"
Andreas Gampe825570c2015-07-26 10:26:03 -0700318 image_suffix="-interp-ac"
Igor Murashkin7617abd2015-07-10 18:27:47 -0700319 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700320 elif [ "x$1" = "x--no-optimize" ]; then
321 run_args="${run_args} --no-optimize"
322 shift
323 elif [ "x$1" = "x--no-precise" ]; then
324 run_args="${run_args} --no-precise"
325 shift
Elliott Hughes7c046102011-10-19 18:16:03 -0700326 elif [ "x$1" = "x--invoke-with" ]; then
327 shift
328 what="$1"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700329 if [ "x$what" = "x" ]; then
330 echo "$0 missing argument to --invoke-with" 1>&2
331 usage="yes"
332 break
333 fi
Ian Rogers0e033672013-04-19 10:22:46 -0700334 run_args="${run_args} --invoke-with ${what}"
jeffhao5d1ac922011-09-29 17:41:15 -0700335 shift
336 elif [ "x$1" = "x--dev" ]; then
337 run_args="${run_args} --dev"
338 dev_mode="yes"
339 shift
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700340 elif [ "x$1" = "x--build-only" ]; then
341 build_only="yes"
342 shift
Alan Leung0afa07a2017-10-03 16:56:30 -0700343 elif [ "x$1" = "x--build-with-d8" ]; then
344 USE_D8="true"
345 shift
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100346 elif [ "x$1" = "x--build-with-javac-dx" ]; then
347 USE_JACK="false"
348 shift
349 elif [ "x$1" = "x--build-with-jack" ]; then
350 USE_JACK="true"
351 shift
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700352 elif [ "x$1" = "x--output-path" ]; then
353 shift
354 tmp_dir=$1
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700355 if [ "x$tmp_dir" = "x" ]; then
356 echo "$0 missing argument to --output-path" 1>&2
357 usage="yes"
358 break
359 fi
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700360 shift
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000361 elif [ "x$1" = "x--android-root" ]; then
362 shift
363 if [ "x$1" = "x" ]; then
364 echo "$0 missing argument to --android-root" 1>&2
365 usage="yes"
366 break
367 fi
368 android_root="$1"
369 run_args="${run_args} --android-root $1"
370 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700371 elif [ "x$1" = "x--update" ]; then
372 update_mode="yes"
373 shift
374 elif [ "x$1" = "x--help" ]; then
375 usage="yes"
376 shift
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700377 elif [ "x$1" = "x--64" ]; then
378 run_args="${run_args} --64"
Andreas Gampe2fe07922014-04-21 07:50:39 -0700379 suffix64="64"
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700380 shift
Sebastien Hertz07aaac82014-07-09 15:59:05 +0200381 elif [ "x$1" = "x--trace" ]; then
Jeff Hao85139a32014-07-23 11:52:52 -0700382 trace="true"
Sebastien Hertz07aaac82014-07-09 15:59:05 +0200383 shift
Andreas Gampe7526d782015-06-22 22:53:45 -0700384 elif [ "x$1" = "x--stream" ]; then
385 trace_stream="true"
386 shift
Alex Lightbfac14a2014-07-30 09:41:21 -0700387 elif [ "x$1" = "x--always-clean" ]; then
388 always_clean="yes"
389 shift
Igor Murashkin05f30e12015-06-10 15:57:17 -0700390 elif [ "x$1" = "x--never-clean" ]; then
391 never_clean="yes"
392 shift
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800393 elif [ "x$1" = "x--dex2oat-swap" ]; then
394 run_args="${run_args} --dex2oat-swap"
395 shift
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700396 elif [ "x$1" = "x--instruction-set-features" ]; then
397 shift
398 run_args="${run_args} --instruction-set-features $1"
399 shift
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700400 elif [ "x$1" = "x--bisection-search" ]; then
401 bisection_search="yes"
402 shift
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000403 elif [ "x$1" = "x--vdex" ]; then
404 run_args="${run_args} --vdex"
405 shift
Nicolas Geoffray74981052017-01-16 17:54:09 +0000406 elif [ "x$1" = "x--vdex-filter" ]; then
407 shift
408 filter=$1
409 run_args="${run_args} --vdex-filter $filter"
410 shift
Jeff Hao002b9312017-03-27 16:23:08 -0700411 elif [ "x$1" = "x--random-profile" ]; then
412 run_args="${run_args} --random-profile"
413 shift
Shubham Ajmera981d99c2017-08-17 14:11:08 -0700414 elif [ "x$1" = "x--dex2oat-jobs" ]; then
415 shift
416 run_args="${run_args} -Xcompiler-option -j$1"
417 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700418 elif expr "x$1" : "x--" >/dev/null 2>&1; then
Elliott Hughes7c046102011-10-19 18:16:03 -0700419 echo "unknown $0 option: $1" 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700420 usage="yes"
421 break
422 else
423 break
424 fi
425done
Andreas Gampe3a12cfe2014-08-13 15:40:22 -0700426
Alex Light10bc5a42016-05-10 10:01:22 -0700427run_args="${run_args} ${image_args}"
Alex Light91de25f2015-10-28 17:00:06 -0700428# Allocate file descriptor real_stderr and redirect it to the shell's error
429# output (fd 2).
430if [ ${BASH_VERSINFO[1]} -ge 4 ] && [ ${BASH_VERSINFO[2]} -ge 1 ]; then
431 exec {real_stderr}>&2
432else
433 # In bash before version 4.1 we need to do a manual search for free file
434 # descriptors.
435 FD=3
436 while [ -e /dev/fd/$FD ]; do FD=$((FD + 1)); done
437 real_stderr=$FD
438 eval "exec ${real_stderr}>&2"
439fi
440if [ "$quiet" = "yes" ]; then
441 # Force the default standard output and error to go to /dev/null so we will
442 # not print them.
443 exec 1>/dev/null
444 exec 2>/dev/null
445fi
446
447function err_echo() {
448 echo "$@" 1>&${real_stderr}
449}
450
Andreas Gampe3a12cfe2014-08-13 15:40:22 -0700451# tmp_dir may be relative, resolve.
452#
453# Cannot use realpath, as it does not exist on Mac.
454# Cannot us a simple "cd", as the path might not be created yet.
Brian Carlstromc580e042014-09-08 21:37:39 -0700455# Cannot use readlink -m, as it does not exist on Mac.
456# Fallback to nuclear option:
Andreas Gampe907b6992014-08-18 22:26:49 -0700457noncanonical_tmp_dir=$tmp_dir
Brian Carlstromc580e042014-09-08 21:37:39 -0700458tmp_dir="`cd $oldwd ; python -c "import os; print os.path.realpath('$tmp_dir')"`"
Dmitry Petrochenko81c56e72014-03-05 15:05:46 +0700459mkdir -p $tmp_dir
jeffhao5d1ac922011-09-29 17:41:15 -0700460
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800461# Add thread suspend timeout flag
Narayan Kamathf86c3932017-01-24 17:40:47 +0000462if [ ! "$runtime" = "jvm" ]; then
463 run_args="${run_args} --runtime-option -XX:ThreadSuspendTimeout=$suspend_timeout"
464fi
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800465
Alex Lighte7873ec2014-08-12 09:53:50 -0700466if [ "$basic_verify" = "true" ]; then
Hiroshi Yamauchi312baf12015-01-12 12:11:05 -0800467 # Set HspaceCompactForOOMMinIntervalMs to zero to run hspace compaction for OOM more frequently in tests.
468 run_args="${run_args} --runtime-option -Xgc:preverify --runtime-option -Xgc:postverify --runtime-option -XX:HspaceCompactForOOMMinIntervalMs=0"
Alex Lighte7873ec2014-08-12 09:53:50 -0700469fi
470if [ "$gc_verify" = "true" ]; then
471 run_args="${run_args} --runtime-option -Xgc:preverify_rosalloc --runtime-option -Xgc:postverify_rosalloc"
472fi
473if [ "$gc_stress" = "true" ]; then
Mathieu Chartierd9eb2842016-08-12 16:11:24 -0700474 run_args="${run_args} --gc-stress --runtime-option -Xgc:gcstress --runtime-option -Xms2m --runtime-option -Xmx16m"
Alex Lighte7873ec2014-08-12 09:53:50 -0700475fi
Alex Lightb7edcda2017-04-27 13:20:31 -0700476if [ "$jvmti_redefine_stress" = "true" ]; then
477 run_args="${run_args} --no-app-image --jvmti-redefine-stress"
478fi
Alex Lightc38c3692017-06-27 15:45:14 -0700479if [ "$jvmti_step_stress" = "true" ]; then
480 run_args="${run_args} --no-app-image --jvmti-step-stress"
481fi
Alex Light43e935d2017-06-19 15:40:40 -0700482if [ "$jvmti_field_stress" = "true" ]; then
483 run_args="${run_args} --no-app-image --jvmti-field-stress"
484fi
Alex Lightb7edcda2017-04-27 13:20:31 -0700485if [ "$jvmti_trace_stress" = "true" ]; then
486 run_args="${run_args} --no-app-image --jvmti-trace-stress"
Alex Light8f2c6d42017-04-10 16:27:35 -0700487fi
Jeff Hao85139a32014-07-23 11:52:52 -0700488if [ "$trace" = "true" ]; then
Andreas Gampe7526d782015-06-22 22:53:45 -0700489 run_args="${run_args} --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file-size:2000000"
490 if [ "$trace_stream" = "true" ]; then
491 # Streaming mode uses the file size as the buffer size. So output gets really large. Drop
492 # the ability to analyze the file and just write to /dev/null.
493 run_args="${run_args} --runtime-option -Xmethod-trace-file:/dev/null"
494 # Enable streaming mode.
495 run_args="${run_args} --runtime-option -Xmethod-trace-stream"
496 else
497 run_args="${run_args} --runtime-option -Xmethod-trace-file:${DEX_LOCATION}/trace.bin"
498 fi
499elif [ "$trace_stream" = "true" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700500 err_echo "Cannot use --stream without --trace."
Andreas Gampe7526d782015-06-22 22:53:45 -0700501 exit 1
Jeff Hao85139a32014-07-23 11:52:52 -0700502fi
503
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700504# Most interesting target architecture variables are Makefile variables, not environment variables.
Nicolas Geoffray6fbcc122014-07-24 00:36:48 +0100505# 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 +0100506function guess_target_arch_name() {
Nicolas Geoffray6fbcc122014-07-24 00:36:48 +0100507 grep32bit=`ls ${ANDROID_PRODUCT_OUT}/data/art-test | grep -E '^(arm|x86|mips)$'`
Andreas Gampe1a5c4062015-01-15 12:10:47 -0800508 grep64bit=`ls ${ANDROID_PRODUCT_OUT}/data/art-test | grep -E '^(arm64|x86_64|mips64)$'`
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700509 if [ "x${suffix64}" = "x64" ]; then
510 target_arch_name=${grep64bit}
511 else
512 target_arch_name=${grep32bit}
513 fi
514}
515
David Brazdil853a4c32015-09-28 16:15:50 +0100516function guess_host_arch_name() {
517 if [ "x${suffix64}" = "x64" ]; then
518 host_arch_name="x86_64"
519 else
520 host_arch_name="x86"
521 fi
522}
523
Alex Lighta59dd802014-07-02 16:28:08 -0700524if [ "$target_mode" = "no" ]; then
525 if [ "$runtime" = "jvm" ]; then
Alex Lighta59dd802014-07-02 16:28:08 -0700526 if [ "$prebuild_mode" = "yes" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700527 err_echo "--prebuild with --jvm is unsupported"
Alex Lighta59dd802014-07-02 16:28:08 -0700528 exit 1;
529 fi
Alex Lighta59dd802014-07-02 16:28:08 -0700530 fi
531fi
532
Alex Light03a112d2014-08-25 13:25:56 -0700533if [ "$have_patchoat" = "no" ]; then
534 run_args="${run_args} --no-patchoat"
535fi
536
537if [ "$have_dex2oat" = "no" ]; then
538 run_args="${run_args} --no-dex2oat"
539fi
540
Jeff Hao201803f2013-11-20 18:11:39 -0800541if [ ! "$runtime" = "jvm" ]; then
542 run_args="${run_args} --lib $lib"
543fi
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700544
Jeff Hao201803f2013-11-20 18:11:39 -0800545if [ "$runtime" = "dalvik" ]; then
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700546 if [ "$target_mode" = "no" ]; then
Nicolas Geoffray6fbcc122014-07-24 00:36:48 +0100547 framework="${ANDROID_PRODUCT_OUT}/system/framework"
Andreas Gampe50be66f2015-12-28 14:31:06 -0800548 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 -0700549 run_args="${run_args} --boot --runtime-option -Xbootclasspath:${bpath}"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700550 else
551 true # defaults to using target BOOTCLASSPATH
552 fi
Jeff Hao201803f2013-11-20 18:11:39 -0800553elif [ "$runtime" = "art" ]; then
554 if [ "$target_mode" = "no" ]; then
David Brazdil853a4c32015-09-28 16:15:50 +0100555 guess_host_arch_name
Richard Uhlerbb00f812017-02-16 14:21:10 +0000556 run_args="${run_args} --boot ${ANDROID_HOST_OUT}/framework/core${image_suffix}${multi_image_suffix}.art"
Colin Crossafd3c9e2016-09-16 13:47:21 -0700557 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 -0800558 else
David Brazdil853a4c32015-09-28 16:15:50 +0100559 guess_target_arch_name
Dimitry Ivanov49c2c922017-02-14 11:06:14 -0800560 run_args="${run_args} --runtime-option -Djava.library.path=/data/nativetest${suffix64}/art/${target_arch_name}"
Richard Uhlerbb00f812017-02-16 14:21:10 +0000561 run_args="${run_args} --boot /data/art-test/core${image_suffix}${multi_image_suffix}.art"
Jeff Hao201803f2013-11-20 18:11:39 -0800562 fi
Alex Lighta59dd802014-07-02 16:28:08 -0700563 if [ "$relocate" = "yes" ]; then
564 run_args="${run_args} --relocate"
565 else
566 run_args="${run_args} --no-relocate"
567 fi
Andreas Gampe3f1dc562015-05-18 15:52:22 -0700568elif [ "$runtime" = "jvm" ]; then
569 # TODO: Detect whether the host is 32-bit or 64-bit.
Alex Lightfba89fe2017-01-12 16:11:02 -0800570 run_args="${run_args} --runtime-option -Djava.library.path=${ANDROID_HOST_OUT}/lib64:${ANDROID_HOST_OUT}/nativetest64"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700571fi
572
Alex Light03a112d2014-08-25 13:25:56 -0700573if [ "$have_image" = "no" ]; then
Alex Light1ef4ce82014-08-27 11:13:47 -0700574 if [ "$runtime" != "art" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700575 err_echo "--no-image is only supported on the art runtime"
Alex Light1ef4ce82014-08-27 11:13:47 -0700576 exit 1
577 fi
Alex Light03a112d2014-08-25 13:25:56 -0700578 run_args="${run_args} --no-image"
579fi
580
jeffhao5d1ac922011-09-29 17:41:15 -0700581if [ "$dev_mode" = "yes" -a "$update_mode" = "yes" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700582 err_echo "--dev and --update are mutually exclusive"
583 usage="yes"
584fi
585
586if [ "$dev_mode" = "yes" -a "$quiet" = "yes" ]; then
587 err_echo "--dev and --quiet are mutually exclusive"
jeffhao5d1ac922011-09-29 17:41:15 -0700588 usage="yes"
589fi
590
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700591if [ "$bisection_search" = "yes" -a "$prebuild_mode" = "yes" ]; then
592 err_echo "--bisection-search and --prebuild are mutually exclusive"
593 usage="yes"
594fi
595
596if [ "$bisection_search" = "yes" -a "$have_dex2oat" = "no" ]; then
597 err_echo "--bisection-search and --no-dex2oat are mutually exclusive"
598 usage="yes"
599fi
600
601if [ "$bisection_search" = "yes" -a "$have_patchoat" = "no" ]; then
602 err_echo "--bisection-search and --no-patchoat are mutually exclusive"
603 usage="yes"
604fi
605
jeffhao5d1ac922011-09-29 17:41:15 -0700606if [ "$usage" = "no" ]; then
607 if [ "x$1" = "x" -o "x$1" = "x-" ]; then
608 test_dir=`basename "$oldwd"`
609 else
610 test_dir="$1"
611 fi
612
613 if [ '!' -d "$test_dir" ]; then
614 td2=`echo ${test_dir}-*`
615 if [ '!' -d "$td2" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700616 err_echo "${test_dir}: no such test directory"
jeffhao5d1ac922011-09-29 17:41:15 -0700617 usage="yes"
618 fi
619 test_dir="$td2"
620 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700621 # Shift to get rid of the test name argument. The rest of the arguments
622 # will get passed to the test run.
623 shift
624fi
625
Søren Gjesse620d0a52016-09-19 11:12:51 +0200626# For building with javac and dx always use Java 7. The dx compiler
627# only support byte codes from Java 7 or earlier (class file major
628# version 51 or lower).
629if [ "$USE_JACK" != "true" ] && [ "$NEED_DEX" = "true" ]; then
630 export JAVAC="${JAVAC} -source 1.7 -target 1.7"
631fi
632
jeffhao5d1ac922011-09-29 17:41:15 -0700633if [ "$usage" = "yes" ]; then
634 prog=`basename $prog`
635 (
636 echo "usage:"
637 echo " $prog --help Print this message."
638 echo " $prog [options] [test-name] Run test normally."
639 echo " $prog --dev [options] [test-name] Development mode" \
640 "(dumps to stdout)."
641 echo " $prog --update [options] [test-name] Update mode" \
642 "(replaces expected.txt)."
643 echo ' Omitting the test name or specifying "-" will use the' \
644 "current directory."
645 echo " Runtime Options:"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000646 echo " -O Run non-debug rather than debug build (off by default)."
647 echo " -Xcompiler-option Pass an option to the compiler."
Orion Hodsone1fb77f2017-02-27 13:57:18 +0000648 echo " --build-option Pass an option to the build script."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000649 echo " --runtime-option Pass an option to the runtime."
650 echo " --debug Wait for a debugger to attach."
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000651 echo " --debuggable Whether to compile Java code for a debugger."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000652 echo " --gdb Run under gdb; incompatible with some tests."
Alex Lightfadfee92015-10-28 09:40:10 -0700653 echo " --gdb-arg Pass an option to gdb."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000654 echo " --build-only Build test files only (off by default)."
Alan Leung0afa07a2017-10-03 16:56:30 -0700655 echo " --build-with-d8 Build test files with javac and d8 (off by default)."
Søren Gjesse620d0a52016-09-19 11:12:51 +0200656 echo " --build-with-javac-dx Build test files with javac and dx (off by default)."
657 echo " --build-with-jack Build test files with jack and jill (on by default)."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000658 echo " --interpreter Enable interpreter only mode (off by default)."
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800659 echo " --jit Enable jit (off by default)."
Nicolas Geoffray0e071252015-03-21 13:43:15 +0000660 echo " --optimizing Enable optimizing compiler (default)."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000661 echo " --no-verify Turn off verification (on by default)."
Igor Murashkin7617abd2015-07-10 18:27:47 -0700662 echo " --verify-soft-fail Force soft fail verification (off by default)."
663 echo " Verification is enabled if neither --no-verify"
664 echo " nor --verify-soft-fail is specified."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000665 echo " --no-optimize Turn off optimization (on by default)."
666 echo " --no-precise Turn off precise GC (on by default)."
667 echo " --zygote Spawn the process from the Zygote." \
jeffhao5d1ac922011-09-29 17:41:15 -0700668 "If used, then the"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000669 echo " other runtime options are ignored."
670 echo " --no-dex2oat Run as though dex2oat was failing."
671 echo " --no-patchoat Run as though patchoat was failing."
672 echo " --prebuild Run dex2oat on the files before starting test. (default)"
673 echo " --no-prebuild Do not run dex2oat on the files before starting"
674 echo " the test."
Richard Uhler76f5cb62016-04-04 13:30:16 -0700675 echo " --strip-dex Strip the dex files before starting test."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000676 echo " --relocate Force the use of relocating in the test, making"
677 echo " the image and oat files be relocated to a random"
Nicolas Geoffray94e25db2017-01-27 14:54:28 +0000678 echo " address before running."
679 echo " --no-relocate Force the use of no relocating in the test. (default)"
Alex Lightfadfee92015-10-28 09:40:10 -0700680 echo " --image Run the test using a precompiled boot image. (default)"
681 echo " --no-image Run the test without a precompiled boot image."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000682 echo " --host Use the host-mode virtual machine."
683 echo " --invoke-with Pass --invoke-with option to runtime."
684 echo " --dalvik Use Dalvik (off by default)."
685 echo " --jvm Use a host-local RI virtual machine."
Alex Lighteb7c1442015-08-31 13:17:42 -0700686 echo " --use-java-home Use the JAVA_HOME environment variable"
687 echo " to find the java compiler and runtime"
688 echo " (if applicable) to run the test with."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000689 echo " --output-path [path] Location where to store the build" \
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700690 "files."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000691 echo " --64 Run the test in 64-bit mode"
692 echo " --trace Run with method tracing"
Alex Lightfadfee92015-10-28 09:40:10 -0700693 echo " --strace Run with syscall tracing from strace."
Andreas Gampe7526d782015-06-22 22:53:45 -0700694 echo " --stream Run method tracing in streaming mode (requires --trace)"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000695 echo " --gcstress Run with gc stress testing"
696 echo " --gcverify Run with gc verification"
Alex Lightb7edcda2017-04-27 13:20:31 -0700697 echo " --jvmti-trace-stress Run with jvmti method tracing stress testing"
Alex Lightc38c3692017-06-27 15:45:14 -0700698 echo " --jvmti-step-stress Run with jvmti single step stress testing"
Alex Lightb7edcda2017-04-27 13:20:31 -0700699 echo " --jvmti-redefine-stress"
700 echo " Run with jvmti method redefinition stress testing"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000701 echo " --always-clean Delete the test files even if the test fails."
Igor Murashkin05f30e12015-06-10 15:57:17 -0700702 echo " --never-clean Keep the test files even if the test succeeds."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000703 echo " --android-root [path] The path on target for the android root. (/system by default)."
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000704 echo " --dex2oat-swap Use a dex2oat swap file."
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700705 echo " --instruction-set-features [string]"
706 echo " Set instruction-set-features for compilation."
Jeff Haodcdc85b2015-12-04 14:06:18 -0800707 echo " --multi-image Use a set of images compiled with dex2oat multi-image for"
708 echo " the boot class path."
Alex Lightfadfee92015-10-28 09:40:10 -0700709 echo " --pic-test Compile the test code position independent."
Alex Light91de25f2015-10-28 17:00:06 -0700710 echo " --quiet Don't print anything except failure messages"
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700711 echo " --bisection-search Perform bisection bug search."
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000712 echo " --vdex Test using vdex as in input to dex2oat. Only works with --prebuild."
Mathieu Chartier3fceaf52017-01-22 13:33:40 -0800713 echo " --suspend-timeout Change thread suspend timeout ms (default 500000)."
Shubham Ajmera981d99c2017-08-17 14:11:08 -0700714 echo " --dex2oat-jobs Number of dex2oat jobs."
Alex Light91de25f2015-10-28 17:00:06 -0700715 ) 1>&2 # Direct to stderr so usage is not printed if --quiet is set.
jeffhao5d1ac922011-09-29 17:41:15 -0700716 exit 1
717fi
718
719cd "$test_dir"
720test_dir=`pwd`
721
722td_info="${test_dir}/${info}"
723td_expected="${test_dir}/${expected}"
724
Brian Carlstrom22469aa2012-09-07 10:34:57 -0700725if [ ! -r $td_info ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700726 err_echo "${test_dir}: missing file $td_info"
Brian Carlstrom22469aa2012-09-07 10:34:57 -0700727 exit 1
728fi
729
730if [ ! -r $td_expected ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700731 err_echo "${test_dir}: missing file $td_expected"
jeffhao5d1ac922011-09-29 17:41:15 -0700732 exit 1
733fi
734
735# copy the test to a temp dir and run it
736
Elliott Hughes510c8782011-10-06 10:57:34 -0700737echo "${test_dir}: building..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700738
739rm -rf "$tmp_dir"
740cp -Rp "$test_dir" "$tmp_dir"
741cd "$tmp_dir"
742
743if [ '!' -r "$build" ]; then
744 cp "${progdir}/etc/default-build" build
Zheng Xuc6667102015-05-15 16:08:45 +0800745else
746 cp "${progdir}/etc/default-build" .
jeffhao5d1ac922011-09-29 17:41:15 -0700747fi
748
749if [ '!' -r "$run" ]; then
750 cp "${progdir}/etc/default-run" run
Zheng Xuc6667102015-05-15 16:08:45 +0800751else
752 cp "${progdir}/etc/default-run" .
jeffhao5d1ac922011-09-29 17:41:15 -0700753fi
754
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700755if [ '!' -r "$check_cmd" ]; then
756 cp "${progdir}/etc/default-check" check
Zheng Xuc6667102015-05-15 16:08:45 +0800757else
758 cp "${progdir}/etc/default-check" .
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700759fi
760
jeffhao5d1ac922011-09-29 17:41:15 -0700761chmod 755 "$build"
762chmod 755 "$run"
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700763chmod 755 "$check_cmd"
jeffhao5d1ac922011-09-29 17:41:15 -0700764
Elliott Hughes8cbc8bc2011-10-04 11:19:45 -0700765export TEST_NAME=`basename ${test_dir}`
766
David Brazdil4846d132015-01-15 19:07:08 +0000767# Tests named '<number>-checker-*' will also have their CFGs verified with
768# Checker when compiled with Optimizing on host.
769if [[ "$TEST_NAME" =~ ^[0-9]+-checker- ]]; then
Igor Murashkin2c7cebd2017-06-26 14:10:02 -0700770 if [ "$runtime" = "art" -a "$image_suffix" = "" ]; then
Nicolas Geoffrayf654ef92017-06-09 16:31:21 +0100771 # In no-prebuild or no-image mode, the compiler only quickens so disable the checker.
772 if [ "$prebuild_mode" = "yes" -a "$have_image" = "yes" ]; then
David Brazdil80fb3942015-07-23 11:53:42 +0100773 run_checker="yes"
David Brazdil5cc343d2015-10-08 11:35:32 +0100774
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100775 if [ "$target_mode" = "no" ]; then
776 cfg_output_dir="$tmp_dir"
David Brazdil5cc343d2015-10-08 11:35:32 +0100777 checker_args="--arch=${host_arch_name^^}"
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100778 else
779 cfg_output_dir="$DEX_LOCATION"
David Brazdil5cc343d2015-10-08 11:35:32 +0100780 checker_args="--arch=${target_arch_name^^}"
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100781 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100782
783 if [ "$debuggable" = "yes" ]; then
784 checker_args="$checker_args --debuggable"
785 fi
786
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100787 run_args="${run_args} -Xcompiler-option --dump-cfg=$cfg_output_dir/$cfg_output \
David Brazdil80fb3942015-07-23 11:53:42 +0100788 -Xcompiler-option -j1"
789 fi
David Brazdil4846d132015-01-15 19:07:08 +0000790 fi
791fi
792
Mathieu Chartier031768a2015-08-27 10:25:02 -0700793 run_args="${run_args} --testlib ${testlib}"
Mathieu Chartier031768a2015-08-27 10:25:02 -0700794
Richard Uhler020c0f32017-03-14 16:23:17 +0000795# To cause tests to fail fast, limit the file sizes created by dx, dex2oat and
796# ART output to approximately 128MB. This should be more than sufficient
797# for any test while still catching cases of runaway output.
798# Set a hard limit to encourage ART developers to increase the ulimit here if
799# needed to support a test case rather than resetting the limit in the run
800# script for the particular test in question.
Orion Hodsonbd328d32017-03-24 11:24:10 +0000801if ! ulimit -f 128000; then
Richard Uhler020c0f32017-03-14 16:23:17 +0000802 err_echo "ulimit file size setting failed"
Ian Rogers997f0f92014-06-21 22:58:05 -0700803fi
804
Igor Murashkin2a337752017-06-16 14:34:40 +0000805if [[ "$target_mode" == "yes" ]]; then
806 build_args="$build_args --target"
807else
808 build_args="$build_args --host"
809fi
810
811if [[ "$dev_mode" == "yes" ]]; then
812 build_args="$build_args --dev"
813fi
814
jeffhao5d1ac922011-09-29 17:41:15 -0700815good="no"
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000816good_build="yes"
817good_run="yes"
Alex Light77fee872017-09-05 14:51:49 -0700818export TEST_RUNTIME="${runtime}"
jeffhao5d1ac922011-09-29 17:41:15 -0700819if [ "$dev_mode" = "yes" ]; then
David Brazdil4846d132015-01-15 19:07:08 +0000820 "./${build}" $build_args 2>&1
Elliott Hughes7ab3a2a2012-06-18 16:34:20 -0700821 build_exit="$?"
822 echo "build exit status: $build_exit" 1>&2
823 if [ "$build_exit" = '0' ]; then
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800824 echo "${test_dir}: running..." 1>&2
825 "./${run}" $run_args "$@" 2>&1
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700826 run_exit="$?"
Calin Juravle3cf48772015-01-26 16:47:33 +0000827
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800828 if [ "$run_exit" = "0" ]; then
Calin Juravle3cf48772015-01-26 16:47:33 +0000829 if [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100830 if [ "$target_mode" = "yes" ]; then
831 adb pull $cfg_output_dir/$cfg_output &> /dev/null
832 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100833 "$checker" $checker_args "$cfg_output" "$tmp_dir" 2>&1
Calin Juravle3cf48772015-01-26 16:47:33 +0000834 checker_exit="$?"
835 if [ "$checker_exit" = "0" ]; then
836 good="yes"
837 fi
Alex Light91de25f2015-10-28 17:00:06 -0700838 err_echo "checker exit status: $checker_exit"
Calin Juravle3cf48772015-01-26 16:47:33 +0000839 else
840 good="yes"
841 fi
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800842 fi
Calin Juravle3cf48772015-01-26 16:47:33 +0000843 echo "run exit status: $run_exit" 1>&2
Elliott Hughes7ab3a2a2012-06-18 16:34:20 -0700844 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700845elif [ "$update_mode" = "yes" ]; then
David Brazdil4846d132015-01-15 19:07:08 +0000846 "./${build}" $build_args >"$build_output" 2>&1
jeffhao5d1ac922011-09-29 17:41:15 -0700847 build_exit="$?"
848 if [ "$build_exit" = '0' ]; then
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800849 echo "${test_dir}: running..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700850 "./${run}" $run_args "$@" >"$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +0000851 if [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100852 if [ "$target_mode" = "yes" ]; then
853 adb pull $cfg_output_dir/$cfg_output &> /dev/null
854 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100855 "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >> "$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +0000856 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700857 sed -e 's/[[:cntrl:]]$//g' < "$output" >"${td_expected}"
858 good="yes"
859 else
Alex Light91de25f2015-10-28 17:00:06 -0700860 cat "$build_output" 1>&${real_stderr} 1>&2
861 err_echo "build exit status: $build_exit"
jeffhao5d1ac922011-09-29 17:41:15 -0700862 fi
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700863elif [ "$build_only" = "yes" ]; then
864 good="yes"
David Brazdil4846d132015-01-15 19:07:08 +0000865 "./${build}" $build_args >"$build_output" 2>&1
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700866 build_exit="$?"
867 if [ "$build_exit" '!=' '0' ]; then
868 cp "$build_output" "$output"
869 echo "build exit status: $build_exit" >>"$output"
870 diff --strip-trailing-cr -q "$expected" "$output" >/dev/null
871 if [ "$?" '!=' "0" ]; then
872 good="no"
Alex Light91de25f2015-10-28 17:00:06 -0700873 err_echo "BUILD FAILED For ${TEST_NAME}"
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700874 fi
875 fi
Tsu Chiang Chuang379e2f52013-08-20 12:24:52 -0700876 # Clean up extraneous files that are not used by tests.
Tsu Chiang Chuang0160d992013-09-13 14:17:42 -0700877 find $tmp_dir -mindepth 1 ! -regex ".*/\(.*jar\|$output\|$expected\)" | xargs rm -rf
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700878 exit 0
jeffhao5d1ac922011-09-29 17:41:15 -0700879else
David Brazdil4846d132015-01-15 19:07:08 +0000880 "./${build}" $build_args >"$build_output" 2>&1
jeffhao5d1ac922011-09-29 17:41:15 -0700881 build_exit="$?"
882 if [ "$build_exit" = '0' ]; then
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800883 echo "${test_dir}: running..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700884 "./${run}" $run_args "$@" >"$output" 2>&1
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000885 run_exit="$?"
886 if [ "$run_exit" != "0" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700887 err_echo "run exit status: $run_exit"
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000888 good_run="no"
David Brazdil4846d132015-01-15 19:07:08 +0000889 elif [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100890 if [ "$target_mode" = "yes" ]; then
891 adb pull $cfg_output_dir/$cfg_output &> /dev/null
892 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100893 "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >> "$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +0000894 checker_exit="$?"
895 if [ "$checker_exit" != "0" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700896 err_echo "checker exit status: $checker_exit"
David Brazdil4846d132015-01-15 19:07:08 +0000897 good_run="no"
898 else
899 good_run="yes"
900 fi
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000901 else
902 good_run="yes"
903 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700904 else
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000905 good_build="no"
jeffhao5d1ac922011-09-29 17:41:15 -0700906 cp "$build_output" "$output"
Andreas Gampef6930a82014-10-21 09:33:08 -0700907 echo "Failed to build in tmpdir=${tmp_dir} from oldwd=${oldwd} and cwd=`pwd`" >> "$output"
908 echo "Non-canonical tmpdir was ${noncanonical_tmp_dir}" >> "$output"
Ian Rogersd9ad27d2014-10-27 13:48:21 -0700909 echo "Args: ${args}" >> "$output"
Andreas Gampef6930a82014-10-21 09:33:08 -0700910 echo "build exit status: $build_exit" >> "$output"
Andreas Gampe5c114902014-10-27 17:03:58 -0700911 max_name_length=$(getconf NAME_MAX ${tmp_dir})
912 echo "Max filename (NAME_MAX): ${max_name_length}" >> "$output"
913 max_path_length=$(getconf PATH_MAX ${tmp_dir})
Andreas Gampe602fbcd2014-10-27 17:06:29 -0700914 echo "Max pathlength (PATH_MAX): ${max_path_length}" >> "$output"
jeffhao5d1ac922011-09-29 17:41:15 -0700915 fi
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700916 ./$check_cmd "$expected" "$output"
jeffhao5d1ac922011-09-29 17:41:15 -0700917 if [ "$?" = "0" ]; then
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000918 if [ "$good_build" = "no" -o "$good_run" = "yes" ]; then
919 # output == expected
920 good="yes"
921 echo "${test_dir}: succeeded!" 1>&2
922 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700923 fi
924fi
925
jeffhao5d1ac922011-09-29 17:41:15 -0700926(
Alex Lightbfac14a2014-07-30 09:41:21 -0700927 if [ "$good" != "yes" -a "$update_mode" != "yes" ]; then
jeffhao5d1ac922011-09-29 17:41:15 -0700928 echo "${test_dir}: FAILED!"
929 echo ' '
930 echo '#################### info'
931 cat "${td_info}" | sed 's/^/# /g'
932 echo '#################### diffs'
Hiroshi Yamauchid630fd62015-09-04 12:52:03 -0700933 diff --strip-trailing-cr -u "$expected" "$output" | tail -n 3000
jeffhao5d1ac922011-09-29 17:41:15 -0700934 echo '####################'
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700935 if [ "$strace" = "yes" ]; then
936 echo '#################### strace output'
Hiroshi Yamauchid630fd62015-09-04 12:52:03 -0700937 tail -n 3000 "$tmp_dir/$strace_output"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700938 echo '####################'
939 fi
Andreas Gampee79ca192017-07-31 10:30:16 -0700940 if [ "x$target_mode" = "xno" -a "x$SANITIZE_HOST" = "xaddress" ]; then
941 # Run the stack script to symbolize any ASAN aborts on the host for SANITIZE_HOST. The
942 # tools used by the given ABI work for both x86 and x86-64.
943 echo "ABI: 'x86_64'" | cat - "$output" | $ANDROID_BUILD_TOP/development/scripts/stack | tail -n 3000
944 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700945 echo ' '
946 fi
Alex Lightbfac14a2014-07-30 09:41:21 -0700947
Alex Light91de25f2015-10-28 17:00:06 -0700948) 2>&${real_stderr} 1>&2
Alex Lightbfac14a2014-07-30 09:41:21 -0700949
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700950# Attempt bisection only if the test failed.
951if [ "$bisection_search" = "yes" -a "$good" != "yes" ]; then
952 # Bisecting works by skipping different optimization passes which breaks checker assertions.
953 if [ "$run_checker" == "yes" ]; then
954 echo "${test_dir}: not bisecting, checker test." 1>&2
955 else
956 # Increase file size limit, bisection search can generate large logfiles.
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700957 echo "${test_dir}: bisecting..." 1>&2
958 cwd=`pwd`
959 maybe_device_mode=""
960 raw_cmd=""
961 if [ "$target_mode" = "yes" ]; then
962 # Produce cmdline.sh in $DEX_LOCATION. "$@" is passed as a runtime option
963 # so that cmdline.sh forwards its arguments to dalvikvm. invoke-with is set
964 # to exec in order to preserve pid when calling dalvikvm. This is required
965 # for bisection search to correctly retrieve logs from device.
966 "./${run}" $run_args --runtime-option '"$@"' --invoke-with exec --dry-run "$@" &> /dev/null
967 adb shell chmod u+x "$DEX_LOCATION/cmdline.sh"
968 maybe_device_mode="--device"
969 raw_cmd="$DEX_LOCATION/cmdline.sh"
970 else
971 raw_cmd="$cwd/${run} --external-log-tags $run_args $@"
972 fi
973 $ANDROID_BUILD_TOP/art/tools/bisection_search/bisection_search.py \
974 $maybe_device_mode \
975 --raw-cmd="$raw_cmd" \
976 --check-script="$cwd/check" \
977 --expected-output="$cwd/expected.txt" \
Wojciech Staszkiewicz0c883832016-09-26 17:51:52 -0700978 --logfile="$cwd/bisection_log.txt" \
Wojciech Staszkiewiczd7a819a2016-09-01 14:43:39 -0700979 --timeout=300
980 fi
981fi
982
Alex Lightbfac14a2014-07-30 09:41:21 -0700983# Clean up test files.
Igor Murashkin05f30e12015-06-10 15:57:17 -0700984if [ "$always_clean" = "yes" -o "$good" = "yes" ] && [ "$never_clean" = "no" ]; then
Alex Lightbfac14a2014-07-30 09:41:21 -0700985 cd "$oldwd"
986 rm -rf "$tmp_dir"
987 if [ "$target_mode" = "yes" -a "$build_exit" = "0" ]; then
988 adb shell rm -rf $DEX_LOCATION
989 fi
990 if [ "$good" = "yes" ]; then
991 exit 0
992 fi
993fi
994
995
996(
997 if [ "$always_clean" = "yes" ]; then
998 echo "${TEST_NAME} files deleted from host "
999 if [ "$target_mode" == "yes" ]; then
1000 echo "and from target"
1001 fi
1002 else
1003 echo "${TEST_NAME} files left in ${tmp_dir} on host"
1004 if [ "$target_mode" == "yes" ]; then
1005 echo "and in ${DEX_LOCATION} on target"
1006 fi
Brian Carlstrom105215d2012-06-14 12:50:44 -07001007 fi
1008
Alex Light91de25f2015-10-28 17:00:06 -07001009) 2>&${real_stderr} 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -07001010
Alex Light6a870fa2016-05-31 16:36:19 -07001011if [ "$never_clean" = "yes" ] && [ "$good" = "yes" ]; then
1012 exit 0
1013else
1014 exit 1
1015fi