blob: 047e3fb606911e66da24a28aee851dc7719ace59 [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
40 tmp_dir="${TMPDIR}/$USER/${test_dir}"
41fi
David Brazdil2c27f2c2015-05-12 18:06:38 +010042checker="${progdir}/../tools/checker/checker.py"
jeffhao5d1ac922011-09-29 17:41:15 -070043export JAVA="java"
Vladimir Markof45c3f82015-12-15 16:36:24 +000044export JAVAC="javac -g -source 1.7 -target 1.7 -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"
Nicolas Geoffray1c5b6da2016-03-16 10:55:57 +000048export USE_JACK="true"
Alex Lightb55f1ac2016-04-12 15:50:55 -070049export SMALI_ARGS="--experimental"
jeffhao5d1ac922011-09-29 17:41:15 -070050
Tsu Chiang Chuang4407e612012-07-19 16:13:43 -070051# If dx was not set by the environment variable, assume it is in the path.
52if [ -z "$DX" ]; then
53 export DX="dx"
54fi
55
Tsu Chiang Chuang6674f8a2013-01-16 15:41:21 -080056# If jasmin was not set by the environment variable, assume it is in the path.
57if [ -z "$JASMIN" ]; then
58 export JASMIN="jasmin"
59fi
60
Andreas Gampe8fda9f22014-10-03 16:15:37 -070061# If smali was not set by the environment variable, assume it is in the path.
62if [ -z "$SMALI" ]; then
63 export SMALI="smali"
64fi
65
66# If dexmerger was not set by the environment variable, assume it is in the path.
67if [ -z "$DXMERGER" ]; then
68 export DXMERGER="dexmerger"
69fi
70
Sebastien Hertz19ac0272015-02-24 17:39:50 +010071# If jack was not set by the environment variable, assume it is in the path.
72if [ -z "$JACK" ]; then
73 export JACK="jack"
74fi
75
Sebastien Hertz19ac0272015-02-24 17:39:50 +010076# ANDROID_BUILD_TOP is not set in a build environment.
77if [ -z "$ANDROID_BUILD_TOP" ]; then
78 export ANDROID_BUILD_TOP=$oldwd
79fi
80
Sebastien Hertz19ac0272015-02-24 17:39:50 +010081# If JACK_CLASSPATH is not set, assume it only contains core-libart.
82if [ -z "$JACK_CLASSPATH" ]; then
Przemyslaw Szczepaniak121b25e2015-11-20 11:24:33 +000083 export JACK_CLASSPATH="${OUT_DIR:-$ANDROID_BUILD_TOP/out}/host/common/obj/JAVA_LIBRARIES/core-libart-hostdex_intermediates/classes.jack:${OUT_DIR:-$ANDROID_BUILD_TOP/out}/host/common/obj/JAVA_LIBRARIES/core-oj-hostdex_intermediates/classes.jack"
Sebastien Hertz19ac0272015-02-24 17:39:50 +010084fi
85
Sebastien Hertz19ac0272015-02-24 17:39:50 +010086export JACK="$JACK -g -cp $JACK_CLASSPATH"
Tsu Chiang Chuang6674f8a2013-01-16 15:41:21 -080087
jeffhao5d1ac922011-09-29 17:41:15 -070088info="info.txt"
89build="build"
90run="run"
91expected="expected.txt"
Andreas Gampe1c83cbc2014-07-22 18:52:29 -070092check_cmd="check"
jeffhao5d1ac922011-09-29 17:41:15 -070093output="output.txt"
94build_output="build-output.txt"
David Brazdil24128c62015-05-21 12:06:13 +010095cfg_output="graph.cfg"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -070096strace_output="strace-output.txt"
Brian Carlstromdc959ea2013-10-28 00:44:49 -070097lib="libartd.so"
Mathieu Chartier031768a2015-08-27 10:25:02 -070098testlib="arttestd"
jeffhao5d1ac922011-09-29 17:41:15 -070099run_args="--quiet"
David Brazdil4846d132015-01-15 19:07:08 +0000100build_args=""
jeffhao5d1ac922011-09-29 17:41:15 -0700101
Alex Light91de25f2015-10-28 17:00:06 -0700102quiet="no"
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000103debuggable="no"
Alex Light9d722532014-07-22 18:07:12 -0700104prebuild_mode="yes"
Brian Carlstrom2613de42012-06-15 17:37:16 -0700105target_mode="yes"
jeffhao5d1ac922011-09-29 17:41:15 -0700106dev_mode="no"
107update_mode="no"
Alex Lighta59dd802014-07-02 16:28:08 -0700108debug_mode="no"
109relocate="yes"
Jeff Hao201803f2013-11-20 18:11:39 -0800110runtime="art"
jeffhao5d1ac922011-09-29 17:41:15 -0700111usage="no"
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700112build_only="no"
Andreas Gampe2fe07922014-04-21 07:50:39 -0700113suffix64=""
Jeff Hao85139a32014-07-23 11:52:52 -0700114trace="false"
Andreas Gampe7526d782015-06-22 22:53:45 -0700115trace_stream="false"
Alex Lighte7873ec2014-08-12 09:53:50 -0700116basic_verify="false"
117gc_verify="false"
118gc_stress="false"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700119strace="false"
Alex Lightbfac14a2014-07-30 09:41:21 -0700120always_clean="no"
Igor Murashkin05f30e12015-06-10 15:57:17 -0700121never_clean="no"
Alex Light03a112d2014-08-25 13:25:56 -0700122have_dex2oat="yes"
123have_patchoat="yes"
124have_image="yes"
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700125image_suffix=""
Andreas Gampec23c9c92014-10-28 14:47:25 -0700126pic_image_suffix=""
Jeff Haodcdc85b2015-12-04 14:06:18 -0800127multi_image_suffix=""
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000128android_root="/system"
jeffhao5d1ac922011-09-29 17:41:15 -0700129
130while true; do
131 if [ "x$1" = "x--host" ]; then
Brian Carlstrom2613de42012-06-15 17:37:16 -0700132 target_mode="no"
TDYa127b92bcab2012-04-08 00:09:51 -0700133 DEX_LOCATION=$tmp_dir
Nicolas Geoffray1a58b7f2014-10-06 12:23:04 +0100134 run_args="${run_args} --host"
jeffhao5d1ac922011-09-29 17:41:15 -0700135 shift
Alex Light91de25f2015-10-28 17:00:06 -0700136 elif [ "x$1" = "x--quiet" ]; then
137 quiet="yes"
138 shift
Alex Lighteb7c1442015-08-31 13:17:42 -0700139 elif [ "x$1" = "x--use-java-home" ]; then
140 if [ -n "${JAVA_HOME}" ]; then
141 export JAVA="${JAVA_HOME}/bin/java"
142 export JAVAC="${JAVA_HOME}/bin/javac -g"
143 else
144 echo "Passed --use-java-home without JAVA_HOME variable set!"
145 usage="yes"
146 fi
147 shift
Elliott Hughes58bcc402012-02-14 14:10:10 -0800148 elif [ "x$1" = "x--jvm" ]; then
Brian Carlstrom2613de42012-06-15 17:37:16 -0700149 target_mode="no"
Jeff Hao201803f2013-11-20 18:11:39 -0800150 runtime="jvm"
Alex Lightbc90d0f2016-05-09 16:21:09 -0700151 image_args=""
Brian Carlstrom01afdba2014-10-03 10:28:47 -0700152 prebuild_mode="no"
Elliott Hughesc717eef2012-06-15 16:01:26 -0700153 NEED_DEX="false"
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100154 USE_JACK="false"
Nicolas Geoffray288a4a22014-10-07 11:02:40 +0100155 run_args="${run_args} --jvm"
Alex Lighteb7c1442015-08-31 13:17:42 -0700156 build_args="${build_args} --jvm"
jeffhao5d1ac922011-09-29 17:41:15 -0700157 shift
Elliott Hughes58bcc402012-02-14 14:10:10 -0800158 elif [ "x$1" = "x-O" ]; then
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700159 lib="libart.so"
Mathieu Chartier031768a2015-08-27 10:25:02 -0700160 testlib="arttest"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700161 shift
162 elif [ "x$1" = "x--dalvik" ]; then
163 lib="libdvm.so"
Jeff Hao201803f2013-11-20 18:11:39 -0800164 runtime="dalvik"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700165 shift
Alex Light03a112d2014-08-25 13:25:56 -0700166 elif [ "x$1" = "x--no-dex2oat" ]; then
167 have_dex2oat="no"
168 shift
169 elif [ "x$1" = "x--no-patchoat" ]; then
170 have_patchoat="no"
171 shift
172 elif [ "x$1" = "x--no-image" ]; then
173 have_image="no"
174 shift
Andreas Gampec23c9c92014-10-28 14:47:25 -0700175 elif [ "x$1" = "x--pic-image" ]; then
176 pic_image_suffix="-pic"
177 shift
Jeff Haodcdc85b2015-12-04 14:06:18 -0800178 elif [ "x$1" = "x--multi-image" ]; then
179 multi_image_suffix="-multi"
180 shift
Andreas Gampec23c9c92014-10-28 14:47:25 -0700181 elif [ "x$1" = "x--pic-test" ]; then
182 run_args="${run_args} --pic-test"
183 shift
Alex Lighta59dd802014-07-02 16:28:08 -0700184 elif [ "x$1" = "x--relocate" ]; then
185 relocate="yes"
186 shift
187 elif [ "x$1" = "x--no-relocate" ]; then
188 relocate="no"
189 shift
190 elif [ "x$1" = "x--prebuild" ]; then
Nicolas Geoffray5fd18ba2014-10-03 12:08:38 +0100191 run_args="${run_args} --prebuild"
Alex Lighta59dd802014-07-02 16:28:08 -0700192 prebuild_mode="yes"
193 shift;
Richard Uhler76f5cb62016-04-04 13:30:16 -0700194 elif [ "x$1" = "x--strip-dex" ]; then
195 run_args="${run_args} --strip-dex"
196 shift;
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000197 elif [ "x$1" = "x--debuggable" ]; then
198 run_args="${run_args} -Xcompiler-option --debuggable"
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000199 debuggable="yes"
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000200 shift;
Alex Lighta59dd802014-07-02 16:28:08 -0700201 elif [ "x$1" = "x--no-prebuild" ]; then
Nicolas Geoffray5fd18ba2014-10-03 12:08:38 +0100202 run_args="${run_args} --no-prebuild"
Alex Lighta59dd802014-07-02 16:28:08 -0700203 prebuild_mode="no"
204 shift;
Alex Lighte7873ec2014-08-12 09:53:50 -0700205 elif [ "x$1" = "x--gcverify" ]; then
206 basic_verify="true"
207 gc_verify="true"
208 shift
209 elif [ "x$1" = "x--gcstress" ]; then
210 basic_verify="true"
211 gc_stress="true"
212 shift
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700213 elif [ "x$1" = "x--image" ]; then
214 shift
215 image="$1"
216 run_args="${run_args} --image $image"
Elliott Hughes7c046102011-10-19 18:16:03 -0700217 shift
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000218 elif [ "x$1" = "x-Xcompiler-option" ]; then
219 shift
220 option="$1"
221 run_args="${run_args} -Xcompiler-option $option"
222 shift
Mathieu Chartier769a5ad2014-05-18 15:30:10 -0700223 elif [ "x$1" = "x--runtime-option" ]; then
224 shift
225 option="$1"
226 run_args="${run_args} --runtime-option $option"
227 shift
Mathieu Chartierc0a8a802014-10-17 15:58:01 -0700228 elif [ "x$1" = "x--gdb-arg" ]; then
229 shift
230 gdb_arg="$1"
231 run_args="${run_args} --gdb-arg $gdb_arg"
232 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700233 elif [ "x$1" = "x--debug" ]; then
234 run_args="${run_args} --debug"
235 shift
236 elif [ "x$1" = "x--gdb" ]; then
237 run_args="${run_args} --gdb"
238 dev_mode="yes"
239 shift
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700240 elif [ "x$1" = "x--strace" ]; then
241 strace="yes"
242 run_args="${run_args} --invoke-with strace --invoke-with -o --invoke-with $tmp_dir/$strace_output"
243 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700244 elif [ "x$1" = "x--zygote" ]; then
245 run_args="${run_args} --zygote"
246 shift
jeffhao0dff3f42012-11-20 15:13:43 -0800247 elif [ "x$1" = "x--interpreter" ]; then
Nicolas Geoffray4650c932016-05-10 09:13:13 +0000248 run_args="${run_args} --interpreter"
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700249 image_suffix="-interpreter"
250 shift
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800251 elif [ "x$1" = "x--jit" ]; then
Nicolas Geoffray4650c932016-05-10 09:13:13 +0000252 run_args="${run_args} --jit"
Andreas Gampe8a159fd2015-09-21 15:14:38 -0700253 image_suffix="-jit"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800254 shift
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700255 elif [ "x$1" = "x--optimizing" ]; then
Nicolas Geoffray4650c932016-05-10 09:13:13 +0000256 run_args="${run_args} -Xcompiler-option --compiler-backend=Optimizing"
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700257 image_suffix="-optimizing"
jeffhao0dff3f42012-11-20 15:13:43 -0800258 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700259 elif [ "x$1" = "x--no-verify" ]; then
Richard Uhlerf4b34872016-04-13 11:03:46 -0700260 run_args="${run_args} --no-verify"
jeffhao5d1ac922011-09-29 17:41:15 -0700261 shift
Igor Murashkin7617abd2015-07-10 18:27:47 -0700262 elif [ "x$1" = "x--verify-soft-fail" ]; then
Nicolas Geoffray4650c932016-05-10 09:13:13 +0000263 run_args="${run_args} --verify-soft-fail"
Andreas Gampe825570c2015-07-26 10:26:03 -0700264 image_suffix="-interp-ac"
Igor Murashkin7617abd2015-07-10 18:27:47 -0700265 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700266 elif [ "x$1" = "x--no-optimize" ]; then
267 run_args="${run_args} --no-optimize"
268 shift
269 elif [ "x$1" = "x--no-precise" ]; then
270 run_args="${run_args} --no-precise"
271 shift
Elliott Hughes7c046102011-10-19 18:16:03 -0700272 elif [ "x$1" = "x--invoke-with" ]; then
273 shift
274 what="$1"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700275 if [ "x$what" = "x" ]; then
276 echo "$0 missing argument to --invoke-with" 1>&2
277 usage="yes"
278 break
279 fi
Ian Rogers0e033672013-04-19 10:22:46 -0700280 run_args="${run_args} --invoke-with ${what}"
jeffhao5d1ac922011-09-29 17:41:15 -0700281 shift
282 elif [ "x$1" = "x--dev" ]; then
283 run_args="${run_args} --dev"
284 dev_mode="yes"
285 shift
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700286 elif [ "x$1" = "x--build-only" ]; then
287 build_only="yes"
288 shift
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100289 elif [ "x$1" = "x--build-with-javac-dx" ]; then
290 USE_JACK="false"
291 shift
292 elif [ "x$1" = "x--build-with-jack" ]; then
293 USE_JACK="true"
294 shift
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700295 elif [ "x$1" = "x--output-path" ]; then
296 shift
297 tmp_dir=$1
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700298 if [ "x$tmp_dir" = "x" ]; then
299 echo "$0 missing argument to --output-path" 1>&2
300 usage="yes"
301 break
302 fi
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700303 shift
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000304 elif [ "x$1" = "x--android-root" ]; then
305 shift
306 if [ "x$1" = "x" ]; then
307 echo "$0 missing argument to --android-root" 1>&2
308 usage="yes"
309 break
310 fi
311 android_root="$1"
312 run_args="${run_args} --android-root $1"
313 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700314 elif [ "x$1" = "x--update" ]; then
315 update_mode="yes"
316 shift
317 elif [ "x$1" = "x--help" ]; then
318 usage="yes"
319 shift
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700320 elif [ "x$1" = "x--64" ]; then
321 run_args="${run_args} --64"
Andreas Gampe2fe07922014-04-21 07:50:39 -0700322 suffix64="64"
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700323 shift
Sebastien Hertz07aaac82014-07-09 15:59:05 +0200324 elif [ "x$1" = "x--trace" ]; then
Jeff Hao85139a32014-07-23 11:52:52 -0700325 trace="true"
Sebastien Hertz07aaac82014-07-09 15:59:05 +0200326 shift
Andreas Gampe7526d782015-06-22 22:53:45 -0700327 elif [ "x$1" = "x--stream" ]; then
328 trace_stream="true"
329 shift
Alex Lightbfac14a2014-07-30 09:41:21 -0700330 elif [ "x$1" = "x--always-clean" ]; then
331 always_clean="yes"
332 shift
Igor Murashkin05f30e12015-06-10 15:57:17 -0700333 elif [ "x$1" = "x--never-clean" ]; then
334 never_clean="yes"
335 shift
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800336 elif [ "x$1" = "x--dex2oat-swap" ]; then
337 run_args="${run_args} --dex2oat-swap"
338 shift
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700339 elif [ "x$1" = "x--instruction-set-features" ]; then
340 shift
341 run_args="${run_args} --instruction-set-features $1"
342 shift
jeffhao5d1ac922011-09-29 17:41:15 -0700343 elif expr "x$1" : "x--" >/dev/null 2>&1; then
Elliott Hughes7c046102011-10-19 18:16:03 -0700344 echo "unknown $0 option: $1" 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700345 usage="yes"
346 break
347 else
348 break
349 fi
350done
Andreas Gampe3a12cfe2014-08-13 15:40:22 -0700351
Alex Light91de25f2015-10-28 17:00:06 -0700352# Allocate file descriptor real_stderr and redirect it to the shell's error
353# output (fd 2).
354if [ ${BASH_VERSINFO[1]} -ge 4 ] && [ ${BASH_VERSINFO[2]} -ge 1 ]; then
355 exec {real_stderr}>&2
356else
357 # In bash before version 4.1 we need to do a manual search for free file
358 # descriptors.
359 FD=3
360 while [ -e /dev/fd/$FD ]; do FD=$((FD + 1)); done
361 real_stderr=$FD
362 eval "exec ${real_stderr}>&2"
363fi
364if [ "$quiet" = "yes" ]; then
365 # Force the default standard output and error to go to /dev/null so we will
366 # not print them.
367 exec 1>/dev/null
368 exec 2>/dev/null
369fi
370
371function err_echo() {
372 echo "$@" 1>&${real_stderr}
373}
374
Andreas Gampe3a12cfe2014-08-13 15:40:22 -0700375# tmp_dir may be relative, resolve.
376#
377# Cannot use realpath, as it does not exist on Mac.
378# Cannot us a simple "cd", as the path might not be created yet.
Brian Carlstromc580e042014-09-08 21:37:39 -0700379# Cannot use readlink -m, as it does not exist on Mac.
380# Fallback to nuclear option:
Andreas Gampe907b6992014-08-18 22:26:49 -0700381noncanonical_tmp_dir=$tmp_dir
Brian Carlstromc580e042014-09-08 21:37:39 -0700382tmp_dir="`cd $oldwd ; python -c "import os; print os.path.realpath('$tmp_dir')"`"
Dmitry Petrochenko81c56e72014-03-05 15:05:46 +0700383mkdir -p $tmp_dir
jeffhao5d1ac922011-09-29 17:41:15 -0700384
Alex Lighte7873ec2014-08-12 09:53:50 -0700385if [ "$basic_verify" = "true" ]; then
Hiroshi Yamauchi312baf12015-01-12 12:11:05 -0800386 # Set HspaceCompactForOOMMinIntervalMs to zero to run hspace compaction for OOM more frequently in tests.
387 run_args="${run_args} --runtime-option -Xgc:preverify --runtime-option -Xgc:postverify --runtime-option -XX:HspaceCompactForOOMMinIntervalMs=0"
Alex Lighte7873ec2014-08-12 09:53:50 -0700388fi
389if [ "$gc_verify" = "true" ]; then
390 run_args="${run_args} --runtime-option -Xgc:preverify_rosalloc --runtime-option -Xgc:postverify_rosalloc"
391fi
392if [ "$gc_stress" = "true" ]; then
Alex Light97acf192016-03-17 09:59:38 -0700393 run_args="${run_args} --gc-stress --runtime-option -Xgc:SS,gcstress --runtime-option -Xms2m --runtime-option -Xmx16m"
Alex Lighte7873ec2014-08-12 09:53:50 -0700394fi
Jeff Hao85139a32014-07-23 11:52:52 -0700395if [ "$trace" = "true" ]; then
Andreas Gampe7526d782015-06-22 22:53:45 -0700396 run_args="${run_args} --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file-size:2000000"
397 if [ "$trace_stream" = "true" ]; then
398 # Streaming mode uses the file size as the buffer size. So output gets really large. Drop
399 # the ability to analyze the file and just write to /dev/null.
400 run_args="${run_args} --runtime-option -Xmethod-trace-file:/dev/null"
401 # Enable streaming mode.
402 run_args="${run_args} --runtime-option -Xmethod-trace-stream"
403 else
404 run_args="${run_args} --runtime-option -Xmethod-trace-file:${DEX_LOCATION}/trace.bin"
405 fi
406elif [ "$trace_stream" = "true" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700407 err_echo "Cannot use --stream without --trace."
Andreas Gampe7526d782015-06-22 22:53:45 -0700408 exit 1
Jeff Hao85139a32014-07-23 11:52:52 -0700409fi
410
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700411# Most interesting target architecture variables are Makefile variables, not environment variables.
Nicolas Geoffray6fbcc122014-07-24 00:36:48 +0100412# 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 +0100413function guess_target_arch_name() {
Nicolas Geoffray6fbcc122014-07-24 00:36:48 +0100414 grep32bit=`ls ${ANDROID_PRODUCT_OUT}/data/art-test | grep -E '^(arm|x86|mips)$'`
Andreas Gampe1a5c4062015-01-15 12:10:47 -0800415 grep64bit=`ls ${ANDROID_PRODUCT_OUT}/data/art-test | grep -E '^(arm64|x86_64|mips64)$'`
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700416 if [ "x${suffix64}" = "x64" ]; then
417 target_arch_name=${grep64bit}
418 else
419 target_arch_name=${grep32bit}
420 fi
421}
422
David Brazdil853a4c32015-09-28 16:15:50 +0100423function guess_host_arch_name() {
424 if [ "x${suffix64}" = "x64" ]; then
425 host_arch_name="x86_64"
426 else
427 host_arch_name="x86"
428 fi
429}
430
Alex Lighta59dd802014-07-02 16:28:08 -0700431if [ "$target_mode" = "no" ]; then
432 if [ "$runtime" = "jvm" ]; then
Alex Lighta59dd802014-07-02 16:28:08 -0700433 if [ "$prebuild_mode" = "yes" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700434 err_echo "--prebuild with --jvm is unsupported"
Alex Lighta59dd802014-07-02 16:28:08 -0700435 exit 1;
436 fi
Alex Lighta59dd802014-07-02 16:28:08 -0700437 fi
438fi
439
Alex Light03a112d2014-08-25 13:25:56 -0700440if [ "$have_patchoat" = "no" ]; then
441 run_args="${run_args} --no-patchoat"
442fi
443
444if [ "$have_dex2oat" = "no" ]; then
445 run_args="${run_args} --no-dex2oat"
446fi
447
Jeff Hao201803f2013-11-20 18:11:39 -0800448if [ ! "$runtime" = "jvm" ]; then
449 run_args="${run_args} --lib $lib"
450fi
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700451
Jeff Hao201803f2013-11-20 18:11:39 -0800452if [ "$runtime" = "dalvik" ]; then
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700453 if [ "$target_mode" = "no" ]; then
Nicolas Geoffray6fbcc122014-07-24 00:36:48 +0100454 framework="${ANDROID_PRODUCT_OUT}/system/framework"
Andreas Gampe50be66f2015-12-28 14:31:06 -0800455 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 -0700456 run_args="${run_args} --boot --runtime-option -Xbootclasspath:${bpath}"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700457 else
458 true # defaults to using target BOOTCLASSPATH
459 fi
Jeff Hao201803f2013-11-20 18:11:39 -0800460elif [ "$runtime" = "art" ]; then
461 if [ "$target_mode" = "no" ]; then
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100462 # ANDROID_HOST_OUT is not set in a build environment.
Brian Carlstrom43534862014-02-19 01:13:52 -0800463 if [ -z "$ANDROID_HOST_OUT" ]; then
Alex Light6a439bc2015-10-26 17:52:36 -0700464 export ANDROID_HOST_OUT=${OUT_DIR:-$ANDROID_BUILD_TOP/out/}host/linux-x86
Brian Carlstrom43534862014-02-19 01:13:52 -0800465 fi
David Brazdil853a4c32015-09-28 16:15:50 +0100466 guess_host_arch_name
Jeff Haodcdc85b2015-12-04 14:06:18 -0800467 run_args="${run_args} --boot ${ANDROID_HOST_OUT}/framework/core${image_suffix}${pic_image_suffix}${multi_image_suffix}.art"
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700468 run_args="${run_args} --runtime-option -Djava.library.path=${ANDROID_HOST_OUT}/lib${suffix64}"
Jeff Hao201803f2013-11-20 18:11:39 -0800469 else
David Brazdil853a4c32015-09-28 16:15:50 +0100470 guess_target_arch_name
Dimitry Ivanov90d48f22016-05-05 17:24:28 -0700471 run_args="${run_args} --runtime-option -Djava.library.path=/data/art-test/${target_arch_name}:/system/lib${suffix64}"
Jeff Haodcdc85b2015-12-04 14:06:18 -0800472 run_args="${run_args} --boot /data/art-test/core${image_suffix}${pic_image_suffix}${multi_image_suffix}.art"
Jeff Hao201803f2013-11-20 18:11:39 -0800473 fi
Alex Lighta59dd802014-07-02 16:28:08 -0700474 if [ "$relocate" = "yes" ]; then
475 run_args="${run_args} --relocate"
476 else
477 run_args="${run_args} --no-relocate"
478 fi
Andreas Gampe3f1dc562015-05-18 15:52:22 -0700479elif [ "$runtime" = "jvm" ]; then
480 # TODO: Detect whether the host is 32-bit or 64-bit.
481 run_args="${run_args} --runtime-option -Djava.library.path=${ANDROID_HOST_OUT}/lib64"
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700482fi
483
Alex Light03a112d2014-08-25 13:25:56 -0700484if [ "$have_image" = "no" ]; then
Alex Light1ef4ce82014-08-27 11:13:47 -0700485 if [ "$runtime" != "art" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700486 err_echo "--no-image is only supported on the art runtime"
Alex Light1ef4ce82014-08-27 11:13:47 -0700487 exit 1
488 fi
489 if [ "$target_mode" = "no" ]; then
490 framework="${ANDROID_HOST_OUT}/framework"
491 bpath_suffix="-hostdex"
492 else
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000493 framework="${android_root}/framework"
Alex Light1ef4ce82014-08-27 11:13:47 -0700494 bpath_suffix=""
495 fi
496 # TODO If the target was compiled WITH_DEXPREOPT=true then these tests will
497 # fail since these jar files will be stripped.
498 bpath="${framework}/core-libart${bpath_suffix}.jar"
Narayan Kamathd50687e2015-11-17 12:37:27 +0000499 bpath="${bpath}:${framework}/core-oj${bpath_suffix}.jar"
Alex Light1ef4ce82014-08-27 11:13:47 -0700500 bpath="${bpath}:${framework}/conscrypt${bpath_suffix}.jar"
501 bpath="${bpath}:${framework}/okhttp${bpath_suffix}.jar"
Alex Light1ef4ce82014-08-27 11:13:47 -0700502 bpath="${bpath}:${framework}/bouncycastle${bpath_suffix}.jar"
503 # Pass down the bootclasspath
504 run_args="${run_args} --runtime-option -Xbootclasspath:${bpath}"
Alex Light03a112d2014-08-25 13:25:56 -0700505 run_args="${run_args} --no-image"
506fi
507
jeffhao5d1ac922011-09-29 17:41:15 -0700508if [ "$dev_mode" = "yes" -a "$update_mode" = "yes" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700509 err_echo "--dev and --update are mutually exclusive"
510 usage="yes"
511fi
512
513if [ "$dev_mode" = "yes" -a "$quiet" = "yes" ]; then
514 err_echo "--dev and --quiet are mutually exclusive"
jeffhao5d1ac922011-09-29 17:41:15 -0700515 usage="yes"
516fi
517
518if [ "$usage" = "no" ]; then
519 if [ "x$1" = "x" -o "x$1" = "x-" ]; then
520 test_dir=`basename "$oldwd"`
521 else
522 test_dir="$1"
523 fi
524
525 if [ '!' -d "$test_dir" ]; then
526 td2=`echo ${test_dir}-*`
527 if [ '!' -d "$td2" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700528 err_echo "${test_dir}: no such test directory"
jeffhao5d1ac922011-09-29 17:41:15 -0700529 usage="yes"
530 fi
531 test_dir="$td2"
532 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700533 # Shift to get rid of the test name argument. The rest of the arguments
534 # will get passed to the test run.
535 shift
536fi
537
538if [ "$usage" = "yes" ]; then
539 prog=`basename $prog`
540 (
541 echo "usage:"
542 echo " $prog --help Print this message."
543 echo " $prog [options] [test-name] Run test normally."
544 echo " $prog --dev [options] [test-name] Development mode" \
545 "(dumps to stdout)."
546 echo " $prog --update [options] [test-name] Update mode" \
547 "(replaces expected.txt)."
548 echo ' Omitting the test name or specifying "-" will use the' \
549 "current directory."
550 echo " Runtime Options:"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000551 echo " -O Run non-debug rather than debug build (off by default)."
552 echo " -Xcompiler-option Pass an option to the compiler."
553 echo " --runtime-option Pass an option to the runtime."
554 echo " --debug Wait for a debugger to attach."
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000555 echo " --debuggable Whether to compile Java code for a debugger."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000556 echo " --gdb Run under gdb; incompatible with some tests."
Alex Lightfadfee92015-10-28 09:40:10 -0700557 echo " --gdb-arg Pass an option to gdb."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000558 echo " --build-only Build test files only (off by default)."
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100559 echo " --build-with-javac-dx Build test files with javac and dx (on by default)."
560 echo " --build-with-jack Build test files with jack and jill (off by default)."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000561 echo " --interpreter Enable interpreter only mode (off by default)."
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800562 echo " --jit Enable jit (off by default)."
Nicolas Geoffray0e071252015-03-21 13:43:15 +0000563 echo " --optimizing Enable optimizing compiler (default)."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000564 echo " --no-verify Turn off verification (on by default)."
Igor Murashkin7617abd2015-07-10 18:27:47 -0700565 echo " --verify-soft-fail Force soft fail verification (off by default)."
566 echo " Verification is enabled if neither --no-verify"
567 echo " nor --verify-soft-fail is specified."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000568 echo " --no-optimize Turn off optimization (on by default)."
569 echo " --no-precise Turn off precise GC (on by default)."
570 echo " --zygote Spawn the process from the Zygote." \
jeffhao5d1ac922011-09-29 17:41:15 -0700571 "If used, then the"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000572 echo " other runtime options are ignored."
573 echo " --no-dex2oat Run as though dex2oat was failing."
574 echo " --no-patchoat Run as though patchoat was failing."
575 echo " --prebuild Run dex2oat on the files before starting test. (default)"
576 echo " --no-prebuild Do not run dex2oat on the files before starting"
577 echo " the test."
Richard Uhler76f5cb62016-04-04 13:30:16 -0700578 echo " --strip-dex Strip the dex files before starting test."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000579 echo " --relocate Force the use of relocating in the test, making"
580 echo " the image and oat files be relocated to a random"
581 echo " address before running. (default)"
582 echo " --no-relocate Force the use of no relocating in the test"
Alex Lightfadfee92015-10-28 09:40:10 -0700583 echo " --image Run the test using a precompiled boot image. (default)"
584 echo " --no-image Run the test without a precompiled boot image."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000585 echo " --host Use the host-mode virtual machine."
586 echo " --invoke-with Pass --invoke-with option to runtime."
587 echo " --dalvik Use Dalvik (off by default)."
588 echo " --jvm Use a host-local RI virtual machine."
Alex Lighteb7c1442015-08-31 13:17:42 -0700589 echo " --use-java-home Use the JAVA_HOME environment variable"
590 echo " to find the java compiler and runtime"
591 echo " (if applicable) to run the test with."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000592 echo " --output-path [path] Location where to store the build" \
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700593 "files."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000594 echo " --64 Run the test in 64-bit mode"
595 echo " --trace Run with method tracing"
Alex Lightfadfee92015-10-28 09:40:10 -0700596 echo " --strace Run with syscall tracing from strace."
Andreas Gampe7526d782015-06-22 22:53:45 -0700597 echo " --stream Run method tracing in streaming mode (requires --trace)"
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000598 echo " --gcstress Run with gc stress testing"
599 echo " --gcverify Run with gc verification"
600 echo " --always-clean Delete the test files even if the test fails."
Igor Murashkin05f30e12015-06-10 15:57:17 -0700601 echo " --never-clean Keep the test files even if the test succeeds."
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000602 echo " --android-root [path] The path on target for the android root. (/system by default)."
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000603 echo " --dex2oat-swap Use a dex2oat swap file."
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700604 echo " --instruction-set-features [string]"
605 echo " Set instruction-set-features for compilation."
Alex Lightfadfee92015-10-28 09:40:10 -0700606 echo " --pic-image Use an image compiled with position independent code for the"
607 echo " boot class path."
Jeff Haodcdc85b2015-12-04 14:06:18 -0800608 echo " --multi-image Use a set of images compiled with dex2oat multi-image for"
609 echo " the boot class path."
Alex Lightfadfee92015-10-28 09:40:10 -0700610 echo " --pic-test Compile the test code position independent."
Alex Light91de25f2015-10-28 17:00:06 -0700611 echo " --quiet Don't print anything except failure messages"
612 ) 1>&2 # Direct to stderr so usage is not printed if --quiet is set.
jeffhao5d1ac922011-09-29 17:41:15 -0700613 exit 1
614fi
615
616cd "$test_dir"
617test_dir=`pwd`
618
619td_info="${test_dir}/${info}"
620td_expected="${test_dir}/${expected}"
621
Brian Carlstrom22469aa2012-09-07 10:34:57 -0700622if [ ! -r $td_info ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700623 err_echo "${test_dir}: missing file $td_info"
Brian Carlstrom22469aa2012-09-07 10:34:57 -0700624 exit 1
625fi
626
627if [ ! -r $td_expected ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700628 err_echo "${test_dir}: missing file $td_expected"
jeffhao5d1ac922011-09-29 17:41:15 -0700629 exit 1
630fi
631
632# copy the test to a temp dir and run it
633
Elliott Hughes510c8782011-10-06 10:57:34 -0700634echo "${test_dir}: building..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700635
636rm -rf "$tmp_dir"
637cp -Rp "$test_dir" "$tmp_dir"
638cd "$tmp_dir"
639
640if [ '!' -r "$build" ]; then
641 cp "${progdir}/etc/default-build" build
Zheng Xuc6667102015-05-15 16:08:45 +0800642else
643 cp "${progdir}/etc/default-build" .
jeffhao5d1ac922011-09-29 17:41:15 -0700644fi
645
646if [ '!' -r "$run" ]; then
647 cp "${progdir}/etc/default-run" run
Zheng Xuc6667102015-05-15 16:08:45 +0800648else
649 cp "${progdir}/etc/default-run" .
jeffhao5d1ac922011-09-29 17:41:15 -0700650fi
651
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700652if [ '!' -r "$check_cmd" ]; then
653 cp "${progdir}/etc/default-check" check
Zheng Xuc6667102015-05-15 16:08:45 +0800654else
655 cp "${progdir}/etc/default-check" .
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700656fi
657
jeffhao5d1ac922011-09-29 17:41:15 -0700658chmod 755 "$build"
659chmod 755 "$run"
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700660chmod 755 "$check_cmd"
jeffhao5d1ac922011-09-29 17:41:15 -0700661
Elliott Hughes8cbc8bc2011-10-04 11:19:45 -0700662export TEST_NAME=`basename ${test_dir}`
663
Roland Levillain0d5a2812015-11-13 10:07:31 +0000664# arch_supports_read_barrier ARCH
665# -------------------------------
666# Return whether the Optimizing compiler has read barrier support for ARCH.
667function arch_supports_read_barrier() {
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000668 # Optimizing has read barrier support for ARM, ARM64, x86 and x86-64 at the
Roland Levillain0d5a2812015-11-13 10:07:31 +0000669 # moment.
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000670 [ "x$1" = xarm ] || [ "x$1" = xarm64 ] || [ "x$1" = xx86 ] || [ "x$1" = xx86_64 ]
Roland Levillain0d5a2812015-11-13 10:07:31 +0000671}
672
David Brazdil4846d132015-01-15 19:07:08 +0000673# Tests named '<number>-checker-*' will also have their CFGs verified with
674# Checker when compiled with Optimizing on host.
675if [[ "$TEST_NAME" =~ ^[0-9]+-checker- ]]; then
David Brazdilf02c3cf2016-02-29 09:14:51 +0000676 if [ "$runtime" = "art" -a "$image_suffix" = "-optimizing" -a "$USE_JACK" = "true" ]; then
Roland Levillain0d5a2812015-11-13 10:07:31 +0000677 # Optimizing has read barrier support for certain architectures
678 # only. On other architectures, compiling is disabled when read
679 # barriers are enabled, meaning that we do not produce a CFG file
680 # as a side-effect of compilation, thus the Checker assertions
681 # cannot be checked. Disable Checker for those cases.
682 #
683 # TODO: Enable Checker when read barrier support is added to more
684 # architectures (b/12687968).
685 if [ "x$ART_USE_READ_BARRIER" = xtrue ] \
686 && (([ "x$host_mode" = "xyes" ] \
687 && ! arch_supports_read_barrier "$host_arch_name") \
688 || ([ "x$target_mode" = "xyes" ] \
689 && ! arch_supports_read_barrier "$target_arch_name")); then
690 run_checker="no"
David Brazdil80fb3942015-07-23 11:53:42 +0100691 # In no-prebuild mode, the compiler is only invoked if both dex2oat and
692 # patchoat are available. Disable Checker otherwise (b/22552692).
Roland Levillain0d5a2812015-11-13 10:07:31 +0000693 elif [ "$prebuild_mode" = "yes" ] \
694 || [ "$have_patchoat" = "yes" -a "$have_dex2oat" = "yes" ]; then
David Brazdil80fb3942015-07-23 11:53:42 +0100695 run_checker="yes"
David Brazdil5cc343d2015-10-08 11:35:32 +0100696
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100697 if [ "$target_mode" = "no" ]; then
698 cfg_output_dir="$tmp_dir"
David Brazdil5cc343d2015-10-08 11:35:32 +0100699 checker_args="--arch=${host_arch_name^^}"
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100700 else
701 cfg_output_dir="$DEX_LOCATION"
David Brazdil5cc343d2015-10-08 11:35:32 +0100702 checker_args="--arch=${target_arch_name^^}"
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100703 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100704
705 if [ "$debuggable" = "yes" ]; then
706 checker_args="$checker_args --debuggable"
707 fi
708
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100709 run_args="${run_args} -Xcompiler-option --dump-cfg=$cfg_output_dir/$cfg_output \
David Brazdil80fb3942015-07-23 11:53:42 +0100710 -Xcompiler-option -j1"
711 fi
David Brazdil4846d132015-01-15 19:07:08 +0000712 fi
713fi
714
Mathieu Chartier031768a2015-08-27 10:25:02 -0700715if [ "$runtime" != "jvm" ]; then
716 run_args="${run_args} --testlib ${testlib}"
717fi
718
Ian Rogers997f0f92014-06-21 22:58:05 -0700719# To cause tests to fail fast, limit the file sizes created by dx, dex2oat and ART output to 2MB.
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100720build_file_size_limit=2048
721run_file_size_limit=2048
Alex Light4694e822016-01-22 10:09:40 -0800722
723# Add tests requiring a higher ulimit to this list. Ulimits might need to be raised to deal with
724# large amounts of expected output or large generated files.
725if echo "$test_dir" | grep -Eq "(083|089|961|964|971)" > /dev/null; then
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100726 build_file_size_limit=5120
727 run_file_size_limit=5120
Ian Rogers997f0f92014-06-21 22:58:05 -0700728fi
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100729if [ "$run_checker" = "yes" -a "$target_mode" = "yes" ]; then
730 # We will need to `adb pull` the .cfg output from the target onto the host to
731 # run checker on it. This file can be big.
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000732 build_file_size_limit=24576
733 run_file_size_limit=24576
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100734fi
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100735if [ ${USE_JACK} = "false" ]; then
736 # Set ulimit if we build with dx only, Jack can generate big temp files.
737 if ! ulimit -S "$build_file_size_limit"; then
Alex Light91de25f2015-10-28 17:00:06 -0700738 err_echo "ulimit file size setting failed"
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100739 fi
Ian Rogers997f0f92014-06-21 22:58:05 -0700740fi
741
jeffhao5d1ac922011-09-29 17:41:15 -0700742good="no"
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000743good_build="yes"
744good_run="yes"
jeffhao5d1ac922011-09-29 17:41:15 -0700745if [ "$dev_mode" = "yes" ]; then
David Brazdil4846d132015-01-15 19:07:08 +0000746 "./${build}" $build_args 2>&1
Elliott Hughes7ab3a2a2012-06-18 16:34:20 -0700747 build_exit="$?"
748 echo "build exit status: $build_exit" 1>&2
749 if [ "$build_exit" = '0' ]; then
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100750 if ! ulimit -S "$run_file_size_limit"; then
Alex Light91de25f2015-10-28 17:00:06 -0700751 err_echo "ulimit file size setting failed"
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100752 fi
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800753 echo "${test_dir}: running..." 1>&2
754 "./${run}" $run_args "$@" 2>&1
Brian Carlstromdc959ea2013-10-28 00:44:49 -0700755 run_exit="$?"
Calin Juravle3cf48772015-01-26 16:47:33 +0000756
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800757 if [ "$run_exit" = "0" ]; then
Calin Juravle3cf48772015-01-26 16:47:33 +0000758 if [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100759 if [ "$target_mode" = "yes" ]; then
760 adb pull $cfg_output_dir/$cfg_output &> /dev/null
761 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100762 "$checker" $checker_args "$cfg_output" "$tmp_dir" 2>&1
Calin Juravle3cf48772015-01-26 16:47:33 +0000763 checker_exit="$?"
764 if [ "$checker_exit" = "0" ]; then
765 good="yes"
766 fi
Alex Light91de25f2015-10-28 17:00:06 -0700767 err_echo "checker exit status: $checker_exit"
Calin Juravle3cf48772015-01-26 16:47:33 +0000768 else
769 good="yes"
770 fi
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800771 fi
Calin Juravle3cf48772015-01-26 16:47:33 +0000772 echo "run exit status: $run_exit" 1>&2
Elliott Hughes7ab3a2a2012-06-18 16:34:20 -0700773 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700774elif [ "$update_mode" = "yes" ]; then
David Brazdil4846d132015-01-15 19:07:08 +0000775 "./${build}" $build_args >"$build_output" 2>&1
jeffhao5d1ac922011-09-29 17:41:15 -0700776 build_exit="$?"
777 if [ "$build_exit" = '0' ]; then
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100778 if ! ulimit -S "$run_file_size_limit"; then
Alex Light91de25f2015-10-28 17:00:06 -0700779 err_echo "ulimit file size setting failed"
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100780 fi
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800781 echo "${test_dir}: running..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700782 "./${run}" $run_args "$@" >"$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +0000783 if [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100784 if [ "$target_mode" = "yes" ]; then
785 adb pull $cfg_output_dir/$cfg_output &> /dev/null
786 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100787 "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >> "$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +0000788 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700789 sed -e 's/[[:cntrl:]]$//g' < "$output" >"${td_expected}"
790 good="yes"
791 else
Alex Light91de25f2015-10-28 17:00:06 -0700792 cat "$build_output" 1>&${real_stderr} 1>&2
793 err_echo "build exit status: $build_exit"
jeffhao5d1ac922011-09-29 17:41:15 -0700794 fi
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700795elif [ "$build_only" = "yes" ]; then
796 good="yes"
David Brazdil4846d132015-01-15 19:07:08 +0000797 "./${build}" $build_args >"$build_output" 2>&1
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700798 build_exit="$?"
799 if [ "$build_exit" '!=' '0' ]; then
800 cp "$build_output" "$output"
801 echo "build exit status: $build_exit" >>"$output"
802 diff --strip-trailing-cr -q "$expected" "$output" >/dev/null
803 if [ "$?" '!=' "0" ]; then
804 good="no"
Alex Light91de25f2015-10-28 17:00:06 -0700805 err_echo "BUILD FAILED For ${TEST_NAME}"
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700806 fi
807 fi
Tsu Chiang Chuang379e2f52013-08-20 12:24:52 -0700808 # Clean up extraneous files that are not used by tests.
Tsu Chiang Chuang0160d992013-09-13 14:17:42 -0700809 find $tmp_dir -mindepth 1 ! -regex ".*/\(.*jar\|$output\|$expected\)" | xargs rm -rf
Tsu Chiang Chuang011fade2012-07-09 18:34:47 -0700810 exit 0
jeffhao5d1ac922011-09-29 17:41:15 -0700811else
David Brazdil4846d132015-01-15 19:07:08 +0000812 "./${build}" $build_args >"$build_output" 2>&1
jeffhao5d1ac922011-09-29 17:41:15 -0700813 build_exit="$?"
814 if [ "$build_exit" = '0' ]; then
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100815 if ! ulimit -S "$run_file_size_limit"; then
Alex Light91de25f2015-10-28 17:00:06 -0700816 err_echo "ulimit file size setting failed"
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100817 fi
Elliott Hughes2bfc6732012-11-27 20:40:51 -0800818 echo "${test_dir}: running..." 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700819 "./${run}" $run_args "$@" >"$output" 2>&1
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000820 run_exit="$?"
821 if [ "$run_exit" != "0" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700822 err_echo "run exit status: $run_exit"
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000823 good_run="no"
David Brazdil4846d132015-01-15 19:07:08 +0000824 elif [ "$run_checker" = "yes" ]; then
Alexandre Rames5e2c8d32015-08-06 14:49:28 +0100825 if [ "$target_mode" = "yes" ]; then
826 adb pull $cfg_output_dir/$cfg_output &> /dev/null
827 fi
David Brazdil5cc343d2015-10-08 11:35:32 +0100828 "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >> "$output" 2>&1
David Brazdil4846d132015-01-15 19:07:08 +0000829 checker_exit="$?"
830 if [ "$checker_exit" != "0" ]; then
Alex Light91de25f2015-10-28 17:00:06 -0700831 err_echo "checker exit status: $checker_exit"
David Brazdil4846d132015-01-15 19:07:08 +0000832 good_run="no"
833 else
834 good_run="yes"
835 fi
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000836 else
837 good_run="yes"
838 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700839 else
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000840 good_build="no"
jeffhao5d1ac922011-09-29 17:41:15 -0700841 cp "$build_output" "$output"
Andreas Gampef6930a82014-10-21 09:33:08 -0700842 echo "Failed to build in tmpdir=${tmp_dir} from oldwd=${oldwd} and cwd=`pwd`" >> "$output"
843 echo "Non-canonical tmpdir was ${noncanonical_tmp_dir}" >> "$output"
Ian Rogersd9ad27d2014-10-27 13:48:21 -0700844 echo "Args: ${args}" >> "$output"
Andreas Gampef6930a82014-10-21 09:33:08 -0700845 echo "build exit status: $build_exit" >> "$output"
Andreas Gampe5c114902014-10-27 17:03:58 -0700846 max_name_length=$(getconf NAME_MAX ${tmp_dir})
847 echo "Max filename (NAME_MAX): ${max_name_length}" >> "$output"
848 max_path_length=$(getconf PATH_MAX ${tmp_dir})
Andreas Gampe602fbcd2014-10-27 17:06:29 -0700849 echo "Max pathlength (PATH_MAX): ${max_path_length}" >> "$output"
jeffhao5d1ac922011-09-29 17:41:15 -0700850 fi
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700851 ./$check_cmd "$expected" "$output"
jeffhao5d1ac922011-09-29 17:41:15 -0700852 if [ "$?" = "0" ]; then
Nicolas Geoffray1ed097d2014-11-13 15:15:39 +0000853 if [ "$good_build" = "no" -o "$good_run" = "yes" ]; then
854 # output == expected
855 good="yes"
856 echo "${test_dir}: succeeded!" 1>&2
857 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700858 fi
859fi
860
jeffhao5d1ac922011-09-29 17:41:15 -0700861(
Alex Lightbfac14a2014-07-30 09:41:21 -0700862 if [ "$good" != "yes" -a "$update_mode" != "yes" ]; then
jeffhao5d1ac922011-09-29 17:41:15 -0700863 echo "${test_dir}: FAILED!"
864 echo ' '
865 echo '#################### info'
866 cat "${td_info}" | sed 's/^/# /g'
867 echo '#################### diffs'
Hiroshi Yamauchid630fd62015-09-04 12:52:03 -0700868 diff --strip-trailing-cr -u "$expected" "$output" | tail -n 3000
jeffhao5d1ac922011-09-29 17:41:15 -0700869 echo '####################'
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700870 if [ "$strace" = "yes" ]; then
871 echo '#################### strace output'
Hiroshi Yamauchid630fd62015-09-04 12:52:03 -0700872 tail -n 3000 "$tmp_dir/$strace_output"
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700873 echo '####################'
874 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700875 echo ' '
876 fi
Alex Lightbfac14a2014-07-30 09:41:21 -0700877
Alex Light91de25f2015-10-28 17:00:06 -0700878) 2>&${real_stderr} 1>&2
Alex Lightbfac14a2014-07-30 09:41:21 -0700879
880# Clean up test files.
Igor Murashkin05f30e12015-06-10 15:57:17 -0700881if [ "$always_clean" = "yes" -o "$good" = "yes" ] && [ "$never_clean" = "no" ]; then
Alex Lightbfac14a2014-07-30 09:41:21 -0700882 cd "$oldwd"
883 rm -rf "$tmp_dir"
884 if [ "$target_mode" = "yes" -a "$build_exit" = "0" ]; then
885 adb shell rm -rf $DEX_LOCATION
886 fi
887 if [ "$good" = "yes" ]; then
888 exit 0
889 fi
890fi
891
892
893(
894 if [ "$always_clean" = "yes" ]; then
895 echo "${TEST_NAME} files deleted from host "
896 if [ "$target_mode" == "yes" ]; then
897 echo "and from target"
898 fi
899 else
900 echo "${TEST_NAME} files left in ${tmp_dir} on host"
901 if [ "$target_mode" == "yes" ]; then
902 echo "and in ${DEX_LOCATION} on target"
903 fi
Brian Carlstrom105215d2012-06-14 12:50:44 -0700904 fi
905
Alex Light91de25f2015-10-28 17:00:06 -0700906) 2>&${real_stderr} 1>&2
jeffhao5d1ac922011-09-29 17:41:15 -0700907
908exit 1