| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 1 | #!/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. | 
 | 19 | prog="$0" | 
| Andreas Gampe | deb48a0 | 2014-10-22 00:44:35 -0700 | [diff] [blame] | 20 | args="$@" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 21 | while [ -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 | 
 | 30 | done | 
 | 31 | oldwd=`pwd` | 
 | 32 | progdir=`dirname "${prog}"` | 
 | 33 | cd "${progdir}" | 
 | 34 | progdir=`pwd` | 
 | 35 | prog="${progdir}"/`basename "${prog}"` | 
| Brian Carlstrom | 105215d | 2012-06-14 12:50:44 -0700 | [diff] [blame] | 36 | test_dir="test-$$" | 
| Andreas Gampe | 5a79fde | 2014-08-06 13:12:26 -0700 | [diff] [blame] | 37 | if [ -z "$TMPDIR" ]; then | 
 | 38 |   tmp_dir="/tmp/$USER/${test_dir}" | 
 | 39 | else | 
 | 40 |   tmp_dir="${TMPDIR}/$USER/${test_dir}" | 
 | 41 | fi | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 42 | checker="${progdir}/../tools/checker.py" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 43 |  | 
 | 44 | export JAVA="java" | 
| Brian Carlstrom | 5103ce6 | 2014-03-30 16:17:42 -0700 | [diff] [blame] | 45 | export JAVAC="javac -g" | 
| Nicolas Geoffray | 1a58b7f | 2014-10-06 12:23:04 +0100 | [diff] [blame] | 46 | export RUN="${progdir}/etc/run-test-jar" | 
| Brian Carlstrom | 105215d | 2012-06-14 12:50:44 -0700 | [diff] [blame] | 47 | export DEX_LOCATION=/data/run-test/${test_dir} | 
| Elliott Hughes | c717eef | 2012-06-15 16:01:26 -0700 | [diff] [blame] | 48 | export NEED_DEX="true" | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 49 | export USE_JACK="false" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 50 |  | 
| Tsu Chiang Chuang | 4407e61 | 2012-07-19 16:13:43 -0700 | [diff] [blame] | 51 | # If dx was not set by the environment variable, assume it is in the path. | 
 | 52 | if [ -z "$DX" ]; then | 
 | 53 |   export DX="dx" | 
 | 54 | fi | 
 | 55 |  | 
| Tsu Chiang Chuang | 6674f8a | 2013-01-16 15:41:21 -0800 | [diff] [blame] | 56 | # If jasmin was not set by the environment variable, assume it is in the path. | 
 | 57 | if [ -z "$JASMIN" ]; then | 
 | 58 |   export JASMIN="jasmin" | 
 | 59 | fi | 
 | 60 |  | 
| Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 61 | # If smali was not set by the environment variable, assume it is in the path. | 
 | 62 | if [ -z "$SMALI" ]; then | 
 | 63 |   export SMALI="smali" | 
 | 64 | fi | 
 | 65 |  | 
 | 66 | # If dexmerger was not set by the environment variable, assume it is in the path. | 
 | 67 | if [ -z "$DXMERGER" ]; then | 
 | 68 |   export DXMERGER="dexmerger" | 
 | 69 | fi | 
 | 70 |  | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 71 | # If jack was not set by the environment variable, assume it is in the path. | 
 | 72 | if [ -z "$JACK" ]; then | 
 | 73 |   export JACK="jack" | 
 | 74 | fi | 
 | 75 |  | 
 | 76 | # If the tree is compiled with Jack, build test with Jack by default. | 
 | 77 | if [ "$ANDROID_COMPILE_WITH_JACK" = "true" ]; then | 
 | 78 |   USE_JACK="true" | 
 | 79 | fi | 
 | 80 |  | 
 | 81 | # ANDROID_BUILD_TOP is not set in a build environment. | 
 | 82 | if [ -z "$ANDROID_BUILD_TOP" ]; then | 
 | 83 |     export ANDROID_BUILD_TOP=$oldwd | 
 | 84 | fi | 
 | 85 |  | 
 | 86 | # If JACK_VM_COMMAND is not set, assume it launches the prebuilt jack-launcher. | 
 | 87 | if [ -z "$JACK_VM_COMMAND" ]; then | 
 | 88 |   if [ ! -z "$TMPDIR" ]; then | 
 | 89 |     jack_temp_dir="-Djava.io.tmpdir=$TMPDIR" | 
 | 90 |   fi | 
 | 91 |   export JACK_VM_COMMAND="java -Dfile.encoding=UTF-8 -Xms2560m -XX:+TieredCompilation $jack_temp_dir -jar $ANDROID_BUILD_TOP/prebuilts/sdk/tools/jack-launcher.jar" | 
 | 92 | fi | 
 | 93 |  | 
 | 94 | # If JACK_CLASSPATH is not set, assume it only contains core-libart. | 
 | 95 | if [ -z "$JACK_CLASSPATH" ]; then | 
| Narayan Kamath | d50687e | 2015-11-17 12:37:27 +0000 | [diff] [blame^] | 96 |   export JACK_CLASSPATH="$ANDROID_BUILD_TOP/out/host/common/obj/JAVA_LIBRARIES/core-libart-hostdex_intermediates/classes.jack:$ANDROID_BUILD_TOP/out/host/common/obj/JAVA_LIBRARIES/core-oj-hostdex_intermediates/classes.jack:" | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 97 | fi | 
 | 98 |  | 
 | 99 | # If JACK_JAR is not set, assume it is located in the prebuilts directory. | 
 | 100 | if [ -z "$JACK_JAR" ]; then | 
 | 101 |   export JACK_JAR="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/jack.jar" | 
 | 102 | fi | 
 | 103 |  | 
 | 104 | # If JILL_JAR is not set, assume it is located in the prebuilts directory. | 
 | 105 | if [ -z "$JILL_JAR" ]; then | 
 | 106 |   export JILL_JAR="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/jill.jar" | 
 | 107 | fi | 
 | 108 |  | 
 | 109 | export JACK="$JACK -g -cp $JACK_CLASSPATH" | 
 | 110 | export JILL="java -jar $JILL_JAR" | 
| Tsu Chiang Chuang | 6674f8a | 2013-01-16 15:41:21 -0800 | [diff] [blame] | 111 |  | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 112 | info="info.txt" | 
 | 113 | build="build" | 
 | 114 | run="run" | 
 | 115 | expected="expected.txt" | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 116 | check_cmd="check" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 117 | output="output.txt" | 
 | 118 | build_output="build-output.txt" | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 119 | cfg_output="cfg-output.txt" | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 120 | lib="libartd.so" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 121 | run_args="--quiet" | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 122 | build_args="" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 123 |  | 
| Nicolas Geoffray | a3d90fb | 2015-03-16 13:55:40 +0000 | [diff] [blame] | 124 | debuggable="no" | 
| Alex Light | 9d72253 | 2014-07-22 18:07:12 -0700 | [diff] [blame] | 125 | prebuild_mode="yes" | 
| Brian Carlstrom | 2613de4 | 2012-06-15 17:37:16 -0700 | [diff] [blame] | 126 | target_mode="yes" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 127 | dev_mode="no" | 
 | 128 | update_mode="no" | 
| Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 129 | debug_mode="no" | 
 | 130 | relocate="yes" | 
| Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 131 | runtime="art" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 132 | usage="no" | 
| Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 133 | build_only="no" | 
| Andreas Gampe | 2fe0792 | 2014-04-21 07:50:39 -0700 | [diff] [blame] | 134 | suffix64="" | 
| Jeff Hao | 85139a3 | 2014-07-23 11:52:52 -0700 | [diff] [blame] | 135 | trace="false" | 
| Andreas Gampe | b91205e | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 136 | trace_stream="false" | 
| Alex Light | e7873ec | 2014-08-12 09:53:50 -0700 | [diff] [blame] | 137 | basic_verify="false" | 
 | 138 | gc_verify="false" | 
 | 139 | gc_stress="false" | 
| Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 140 | always_clean="no" | 
| Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 141 | have_dex2oat="yes" | 
 | 142 | have_patchoat="yes" | 
 | 143 | have_image="yes" | 
| Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 144 | image_suffix="" | 
| Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 145 | pic_image_suffix="" | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 146 | android_root="/system" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 147 |  | 
 | 148 | while true; do | 
 | 149 |     if [ "x$1" = "x--host" ]; then | 
| Brian Carlstrom | 2613de4 | 2012-06-15 17:37:16 -0700 | [diff] [blame] | 150 |         target_mode="no" | 
| TDYa127 | b92bcab | 2012-04-08 00:09:51 -0700 | [diff] [blame] | 151 |         DEX_LOCATION=$tmp_dir | 
| Nicolas Geoffray | 1a58b7f | 2014-10-06 12:23:04 +0100 | [diff] [blame] | 152 |         run_args="${run_args} --host" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 153 |         shift | 
| Elliott Hughes | 58bcc40 | 2012-02-14 14:10:10 -0800 | [diff] [blame] | 154 |     elif [ "x$1" = "x--jvm" ]; then | 
| Brian Carlstrom | 2613de4 | 2012-06-15 17:37:16 -0700 | [diff] [blame] | 155 |         target_mode="no" | 
| Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 156 |         runtime="jvm" | 
| Brian Carlstrom | 01afdba | 2014-10-03 10:28:47 -0700 | [diff] [blame] | 157 |         prebuild_mode="no" | 
| Elliott Hughes | c717eef | 2012-06-15 16:01:26 -0700 | [diff] [blame] | 158 |         NEED_DEX="false" | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 159 |         USE_JACK="false" | 
| Nicolas Geoffray | 288a4a2 | 2014-10-07 11:02:40 +0100 | [diff] [blame] | 160 |         run_args="${run_args} --jvm" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 161 |         shift | 
| Elliott Hughes | 58bcc40 | 2012-02-14 14:10:10 -0800 | [diff] [blame] | 162 |     elif [ "x$1" = "x-O" ]; then | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 163 |         lib="libart.so" | 
 | 164 |         shift | 
 | 165 |     elif [ "x$1" = "x--dalvik" ]; then | 
 | 166 |         lib="libdvm.so" | 
| Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 167 |         runtime="dalvik" | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 168 |         shift | 
| Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 169 |     elif [ "x$1" = "x--no-dex2oat" ]; then | 
 | 170 |         have_dex2oat="no" | 
 | 171 |         shift | 
 | 172 |     elif [ "x$1" = "x--no-patchoat" ]; then | 
 | 173 |         have_patchoat="no" | 
 | 174 |         shift | 
 | 175 |     elif [ "x$1" = "x--no-image" ]; then | 
 | 176 |         have_image="no" | 
 | 177 |         shift | 
| Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 178 |     elif [ "x$1" = "x--pic-image" ]; then | 
 | 179 |         pic_image_suffix="-pic" | 
 | 180 |         shift | 
 | 181 |     elif [ "x$1" = "x--pic-test" ]; then | 
 | 182 |         run_args="${run_args} --pic-test" | 
 | 183 |         shift | 
| Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 184 |     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 Geoffray | 5fd18ba | 2014-10-03 12:08:38 +0100 | [diff] [blame] | 191 |         run_args="${run_args} --prebuild" | 
| Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 192 |         prebuild_mode="yes" | 
 | 193 |         shift; | 
| Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 194 |     elif [ "x$1" = "x--debuggable" ]; then | 
 | 195 |         run_args="${run_args} -Xcompiler-option --debuggable" | 
| Nicolas Geoffray | a3d90fb | 2015-03-16 13:55:40 +0000 | [diff] [blame] | 196 |         debuggable="yes" | 
| Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 197 |         shift; | 
| Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 198 |     elif [ "x$1" = "x--no-prebuild" ]; then | 
| Nicolas Geoffray | 5fd18ba | 2014-10-03 12:08:38 +0100 | [diff] [blame] | 199 |         run_args="${run_args} --no-prebuild" | 
| Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 200 |         prebuild_mode="no" | 
 | 201 |         shift; | 
| Alex Light | e7873ec | 2014-08-12 09:53:50 -0700 | [diff] [blame] | 202 |     elif [ "x$1" = "x--gcverify" ]; then | 
 | 203 |         basic_verify="true" | 
 | 204 |         gc_verify="true" | 
 | 205 |         shift | 
 | 206 |     elif [ "x$1" = "x--gcstress" ]; then | 
 | 207 |         basic_verify="true" | 
 | 208 |         gc_stress="true" | 
 | 209 |         shift | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 210 |     elif [ "x$1" = "x--image" ]; then | 
 | 211 |         shift | 
 | 212 |         image="$1" | 
 | 213 |         run_args="${run_args} --image $image" | 
| Elliott Hughes | 7c04610 | 2011-10-19 18:16:03 -0700 | [diff] [blame] | 214 |         shift | 
| Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 215 |     elif [ "x$1" = "x-Xcompiler-option" ]; then | 
 | 216 |         shift | 
 | 217 |         option="$1" | 
 | 218 |         run_args="${run_args} -Xcompiler-option $option" | 
 | 219 |         shift | 
| Mathieu Chartier | 769a5ad | 2014-05-18 15:30:10 -0700 | [diff] [blame] | 220 |     elif [ "x$1" = "x--runtime-option" ]; then | 
 | 221 |         shift | 
 | 222 |         option="$1" | 
 | 223 |         run_args="${run_args} --runtime-option $option" | 
 | 224 |         shift | 
| Mathieu Chartier | c0a8a80 | 2014-10-17 15:58:01 -0700 | [diff] [blame] | 225 |     elif [ "x$1" = "x--gdb-arg" ]; then | 
 | 226 |         shift | 
 | 227 |         gdb_arg="$1" | 
 | 228 |         run_args="${run_args} --gdb-arg $gdb_arg" | 
 | 229 |         shift | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 230 |     elif [ "x$1" = "x--debug" ]; then | 
 | 231 |         run_args="${run_args} --debug" | 
 | 232 |         shift | 
 | 233 |     elif [ "x$1" = "x--gdb" ]; then | 
 | 234 |         run_args="${run_args} --gdb" | 
 | 235 |         dev_mode="yes" | 
 | 236 |         shift | 
 | 237 |     elif [ "x$1" = "x--zygote" ]; then | 
 | 238 |         run_args="${run_args} --zygote" | 
 | 239 |         shift | 
| jeffhao | 0dff3f4 | 2012-11-20 15:13:43 -0800 | [diff] [blame] | 240 |     elif [ "x$1" = "x--interpreter" ]; then | 
 | 241 |         run_args="${run_args} --interpreter" | 
| Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 242 |         image_suffix="-interpreter" | 
 | 243 |         shift | 
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 244 |     elif [ "x$1" = "x--jit" ]; then | 
 | 245 |         run_args="${run_args} --jit" | 
| Mathieu Chartier | e2a12c0 | 2015-02-27 13:21:15 -0800 | [diff] [blame] | 246 |         image_suffix="-interpreter" | 
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 247 |         shift | 
| Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 248 |     elif [ "x$1" = "x--optimizing" ]; then | 
 | 249 |         run_args="${run_args} -Xcompiler-option --compiler-backend=Optimizing" | 
 | 250 |         image_suffix="-optimizing" | 
| jeffhao | 0dff3f4 | 2012-11-20 15:13:43 -0800 | [diff] [blame] | 251 |         shift | 
| Nicolas Geoffray | c9338b9 | 2014-12-03 13:36:10 +0000 | [diff] [blame] | 252 |     elif [ "x$1" = "x--quick" ]; then | 
 | 253 |         run_args="${run_args} -Xcompiler-option --compiler-backend=Quick" | 
 | 254 |         shift | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 255 |     elif [ "x$1" = "x--no-verify" ]; then | 
 | 256 |         run_args="${run_args} --no-verify" | 
 | 257 |         shift | 
 | 258 |     elif [ "x$1" = "x--no-optimize" ]; then | 
 | 259 |         run_args="${run_args} --no-optimize" | 
 | 260 |         shift | 
 | 261 |     elif [ "x$1" = "x--no-precise" ]; then | 
 | 262 |         run_args="${run_args} --no-precise" | 
 | 263 |         shift | 
| Elliott Hughes | 7c04610 | 2011-10-19 18:16:03 -0700 | [diff] [blame] | 264 |     elif [ "x$1" = "x--invoke-with" ]; then | 
 | 265 |         shift | 
 | 266 |         what="$1" | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 267 |         if [ "x$what" = "x" ]; then | 
 | 268 |             echo "$0 missing argument to --invoke-with" 1>&2 | 
 | 269 |             usage="yes" | 
 | 270 |             break | 
 | 271 |         fi | 
| Ian Rogers | 0e03367 | 2013-04-19 10:22:46 -0700 | [diff] [blame] | 272 |         run_args="${run_args} --invoke-with ${what}" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 273 |         shift | 
 | 274 |     elif [ "x$1" = "x--dev" ]; then | 
 | 275 |         run_args="${run_args} --dev" | 
 | 276 |         dev_mode="yes" | 
 | 277 |         shift | 
| Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 278 |     elif [ "x$1" = "x--build-only" ]; then | 
 | 279 |         build_only="yes" | 
 | 280 |         shift | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 281 |     elif [ "x$1" = "x--build-with-javac-dx" ]; then | 
 | 282 |         USE_JACK="false" | 
 | 283 |         shift | 
 | 284 |     elif [ "x$1" = "x--build-with-jack" ]; then | 
 | 285 |         USE_JACK="true" | 
 | 286 |         shift | 
| Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 287 |     elif [ "x$1" = "x--output-path" ]; then | 
 | 288 |         shift | 
 | 289 |         tmp_dir=$1 | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 290 |         if [ "x$tmp_dir" = "x" ]; then | 
 | 291 |             echo "$0 missing argument to --output-path" 1>&2 | 
 | 292 |             usage="yes" | 
 | 293 |             break | 
 | 294 |         fi | 
| Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 295 |         shift | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 296 |     elif [ "x$1" = "x--android-root" ]; then | 
 | 297 |         shift | 
 | 298 |         if [ "x$1" = "x" ]; then | 
 | 299 |             echo "$0 missing argument to --android-root" 1>&2 | 
 | 300 |             usage="yes" | 
 | 301 |             break | 
 | 302 |         fi | 
 | 303 |         android_root="$1" | 
 | 304 |         run_args="${run_args} --android-root $1" | 
 | 305 |         shift | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 306 |     elif [ "x$1" = "x--update" ]; then | 
 | 307 |         update_mode="yes" | 
 | 308 |         shift | 
 | 309 |     elif [ "x$1" = "x--help" ]; then | 
 | 310 |         usage="yes" | 
 | 311 |         shift | 
| Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 312 |     elif [ "x$1" = "x--64" ]; then | 
 | 313 |         run_args="${run_args} --64" | 
| Andreas Gampe | 2fe0792 | 2014-04-21 07:50:39 -0700 | [diff] [blame] | 314 |         suffix64="64" | 
| Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 315 |         shift | 
| Sebastien Hertz | 07aaac8 | 2014-07-09 15:59:05 +0200 | [diff] [blame] | 316 |     elif [ "x$1" = "x--trace" ]; then | 
| Jeff Hao | 85139a3 | 2014-07-23 11:52:52 -0700 | [diff] [blame] | 317 |         trace="true" | 
| Sebastien Hertz | 07aaac8 | 2014-07-09 15:59:05 +0200 | [diff] [blame] | 318 |         shift | 
| Andreas Gampe | b91205e | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 319 |     elif [ "x$1" = "x--stream" ]; then | 
 | 320 |         trace_stream="true" | 
 | 321 |         shift | 
| Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 322 |     elif [ "x$1" = "x--always-clean" ]; then | 
 | 323 |         always_clean="yes" | 
 | 324 |         shift | 
| Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 325 |     elif [ "x$1" = "x--dex2oat-swap" ]; then | 
 | 326 |         run_args="${run_args} --dex2oat-swap" | 
 | 327 |         shift | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 328 |     elif expr "x$1" : "x--" >/dev/null 2>&1; then | 
| Elliott Hughes | 7c04610 | 2011-10-19 18:16:03 -0700 | [diff] [blame] | 329 |         echo "unknown $0 option: $1" 1>&2 | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 330 |         usage="yes" | 
 | 331 |         break | 
 | 332 |     else | 
 | 333 |         break | 
 | 334 |     fi | 
 | 335 | done | 
| Andreas Gampe | 3a12cfe | 2014-08-13 15:40:22 -0700 | [diff] [blame] | 336 |  | 
 | 337 | # tmp_dir may be relative, resolve. | 
 | 338 | # | 
 | 339 | # Cannot use realpath, as it does not exist on Mac. | 
 | 340 | # Cannot us a simple "cd", as the path might not be created yet. | 
| Brian Carlstrom | c580e04 | 2014-09-08 21:37:39 -0700 | [diff] [blame] | 341 | # Cannot use readlink -m, as it does not exist on Mac. | 
 | 342 | # Fallback to nuclear option: | 
| Andreas Gampe | 907b699 | 2014-08-18 22:26:49 -0700 | [diff] [blame] | 343 | noncanonical_tmp_dir=$tmp_dir | 
| Brian Carlstrom | c580e04 | 2014-09-08 21:37:39 -0700 | [diff] [blame] | 344 | tmp_dir="`cd $oldwd ; python -c "import os; print os.path.realpath('$tmp_dir')"`" | 
| Dmitry Petrochenko | 81c56e7 | 2014-03-05 15:05:46 +0700 | [diff] [blame] | 345 | mkdir -p $tmp_dir | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 346 |  | 
| Alex Light | e7873ec | 2014-08-12 09:53:50 -0700 | [diff] [blame] | 347 | if [ "$basic_verify" = "true" ]; then | 
| Hiroshi Yamauchi | 312baf1 | 2015-01-12 12:11:05 -0800 | [diff] [blame] | 348 |   # Set HspaceCompactForOOMMinIntervalMs to zero to run hspace compaction for OOM more frequently in tests. | 
 | 349 |   run_args="${run_args} --runtime-option -Xgc:preverify --runtime-option -Xgc:postverify --runtime-option -XX:HspaceCompactForOOMMinIntervalMs=0" | 
| Alex Light | e7873ec | 2014-08-12 09:53:50 -0700 | [diff] [blame] | 350 | fi | 
 | 351 | if [ "$gc_verify" = "true" ]; then | 
 | 352 |   run_args="${run_args} --runtime-option -Xgc:preverify_rosalloc --runtime-option -Xgc:postverify_rosalloc" | 
 | 353 | fi | 
 | 354 | if [ "$gc_stress" = "true" ]; then | 
 | 355 |   run_args="${run_args} --runtime-option -Xgc:SS --runtime-option -Xms2m --runtime-option -Xmx2m" | 
 | 356 | fi | 
| Jeff Hao | 85139a3 | 2014-07-23 11:52:52 -0700 | [diff] [blame] | 357 | if [ "$trace" = "true" ]; then | 
| Andreas Gampe | b91205e | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 358 |     run_args="${run_args} --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file-size:2000000" | 
 | 359 |     if [ "$trace_stream" = "true" ]; then | 
 | 360 |         # Streaming mode uses the file size as the buffer size. So output gets really large. Drop | 
 | 361 |         # the ability to analyze the file and just write to /dev/null. | 
 | 362 |         run_args="${run_args} --runtime-option -Xmethod-trace-file:/dev/null" | 
 | 363 |         # Enable streaming mode. | 
 | 364 |         run_args="${run_args} --runtime-option -Xmethod-trace-stream" | 
 | 365 |     else | 
 | 366 |         run_args="${run_args} --runtime-option -Xmethod-trace-file:${DEX_LOCATION}/trace.bin" | 
 | 367 |     fi | 
 | 368 | elif [ "$trace_stream" = "true" ]; then | 
 | 369 |     echo "Cannot use --stream without --trace." | 
 | 370 |     exit 1 | 
| Jeff Hao | 85139a3 | 2014-07-23 11:52:52 -0700 | [diff] [blame] | 371 | fi | 
 | 372 |  | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 373 | # Most interesting target architecture variables are Makefile variables, not environment variables. | 
| Nicolas Geoffray | 6fbcc12 | 2014-07-24 00:36:48 +0100 | [diff] [blame] | 374 | # Try to map the suffix64 flag and what we find in ${ANDROID_PRODUCT_OUT}/data/art-test to an architecture name. | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 375 | function guess_arch_name() { | 
| Nicolas Geoffray | 6fbcc12 | 2014-07-24 00:36:48 +0100 | [diff] [blame] | 376 |     grep32bit=`ls ${ANDROID_PRODUCT_OUT}/data/art-test | grep -E '^(arm|x86|mips)$'` | 
| Andreas Gampe | 1a5c406 | 2015-01-15 12:10:47 -0800 | [diff] [blame] | 377 |     grep64bit=`ls ${ANDROID_PRODUCT_OUT}/data/art-test | grep -E '^(arm64|x86_64|mips64)$'` | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 378 |     if [ "x${suffix64}" = "x64" ]; then | 
 | 379 |         target_arch_name=${grep64bit} | 
 | 380 |     else | 
 | 381 |         target_arch_name=${grep32bit} | 
 | 382 |     fi | 
 | 383 | } | 
 | 384 |  | 
| Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 385 | if [ "$target_mode" = "no" ]; then | 
 | 386 |     if [ "$runtime" = "jvm" ]; then | 
| Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 387 |         if [ "$prebuild_mode" = "yes" ]; then | 
 | 388 |             echo "--prebuild with --jvm is unsupported"; | 
 | 389 |             exit 1; | 
 | 390 |         fi | 
| Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 391 |     fi | 
 | 392 | fi | 
 | 393 |  | 
| Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 394 | if [ "$have_patchoat" = "no" ]; then | 
 | 395 |   run_args="${run_args} --no-patchoat" | 
 | 396 | fi | 
 | 397 |  | 
 | 398 | if [ "$have_dex2oat" = "no" ]; then | 
 | 399 |   run_args="${run_args} --no-dex2oat" | 
 | 400 | fi | 
 | 401 |  | 
| Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 402 | if [ ! "$runtime" = "jvm" ]; then | 
 | 403 |   run_args="${run_args} --lib $lib" | 
 | 404 | fi | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 405 |  | 
| Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 406 | if [ "$runtime" = "dalvik" ]; then | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 407 |     if [ "$target_mode" = "no" ]; then | 
| Nicolas Geoffray | 6fbcc12 | 2014-07-24 00:36:48 +0100 | [diff] [blame] | 408 |         framework="${ANDROID_PRODUCT_OUT}/system/framework" | 
| Narayan Kamath | d50687e | 2015-11-17 12:37:27 +0000 | [diff] [blame^] | 409 |         bpath="${framework}/core-libart.jar:${framework}/core-oj.jar:${framework}/conscrypt.jar:${framework}/okhttp.jar:${framework}/core-junit.jar:${framework}/bouncycastle.jar:${framework}/ext.jar:" | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 410 |         run_args="${run_args} --boot -Xbootclasspath:${bpath}" | 
 | 411 |     else | 
 | 412 |         true # defaults to using target BOOTCLASSPATH | 
 | 413 |     fi | 
| Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 414 | elif [ "$runtime" = "art" ]; then | 
 | 415 |     if [ "$target_mode" = "no" ]; then | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 416 |         # ANDROID_HOST_OUT is not set in a build environment. | 
| Brian Carlstrom | 4353486 | 2014-02-19 01:13:52 -0800 | [diff] [blame] | 417 |         if [ -z "$ANDROID_HOST_OUT" ]; then | 
| Nicolas Geoffray | 1a58b7f | 2014-10-06 12:23:04 +0100 | [diff] [blame] | 418 |             export ANDROID_HOST_OUT=$ANDROID_BUILD_TOP/out/host/linux-x86 | 
| Brian Carlstrom | 4353486 | 2014-02-19 01:13:52 -0800 | [diff] [blame] | 419 |         fi | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 420 |         run_args="${run_args} --boot ${ANDROID_HOST_OUT}/framework/core${image_suffix}${pic_image_suffix}.art" | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 421 |         run_args="${run_args} --runtime-option -Djava.library.path=${ANDROID_HOST_OUT}/lib${suffix64}" | 
| Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 422 |     else | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 423 |         guess_arch_name | 
 | 424 |         run_args="${run_args} --runtime-option -Djava.library.path=/data/art-test/${target_arch_name}" | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 425 |         run_args="${run_args} --boot /data/art-test/core${image_suffix}${pic_image_suffix}.art" | 
| Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 426 |     fi | 
| Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 427 |     if [ "$relocate" = "yes" ]; then | 
 | 428 |       run_args="${run_args} --relocate" | 
 | 429 |     else | 
 | 430 |       run_args="${run_args} --no-relocate" | 
 | 431 |     fi | 
| Andreas Gampe | 8256609 | 2015-05-18 15:52:22 -0700 | [diff] [blame] | 432 | elif [ "$runtime" = "jvm" ]; then | 
 | 433 |     # TODO: Detect whether the host is 32-bit or 64-bit. | 
 | 434 |     run_args="${run_args} --runtime-option -Djava.library.path=${ANDROID_HOST_OUT}/lib64" | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 435 | fi | 
 | 436 |  | 
| Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 437 | if [ "$have_image" = "no" ]; then | 
| Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame] | 438 |     if [ "$runtime" != "art" ]; then | 
 | 439 |         echo "--no-image is only supported on the art runtime" | 
 | 440 |         exit 1 | 
 | 441 |     fi | 
 | 442 |     if [ "$target_mode" = "no" ]; then | 
 | 443 |         framework="${ANDROID_HOST_OUT}/framework" | 
 | 444 |         bpath_suffix="-hostdex" | 
 | 445 |     else | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 446 |         framework="${android_root}/framework" | 
| Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame] | 447 |         bpath_suffix="" | 
 | 448 |     fi | 
 | 449 |     # TODO If the target was compiled WITH_DEXPREOPT=true then these tests will | 
 | 450 |     # fail since these jar files will be stripped. | 
 | 451 |     bpath="${framework}/core-libart${bpath_suffix}.jar" | 
| Narayan Kamath | d50687e | 2015-11-17 12:37:27 +0000 | [diff] [blame^] | 452 |     bpath="${bpath}:${framework}/core-oj${bpath_suffix}.jar" | 
| Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame] | 453 |     bpath="${bpath}:${framework}/conscrypt${bpath_suffix}.jar" | 
 | 454 |     bpath="${bpath}:${framework}/okhttp${bpath_suffix}.jar" | 
 | 455 |     bpath="${bpath}:${framework}/core-junit${bpath_suffix}.jar" | 
 | 456 |     bpath="${bpath}:${framework}/bouncycastle${bpath_suffix}.jar" | 
 | 457 |     # Pass down the bootclasspath | 
 | 458 |     run_args="${run_args} --runtime-option -Xbootclasspath:${bpath}" | 
| Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 459 |     run_args="${run_args} --no-image" | 
 | 460 | fi | 
 | 461 |  | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 462 | if [ "$dev_mode" = "yes" -a "$update_mode" = "yes" ]; then | 
 | 463 |     echo "--dev and --update are mutually exclusive" 1>&2 | 
 | 464 |     usage="yes" | 
 | 465 | fi | 
 | 466 |  | 
 | 467 | if [ "$usage" = "no" ]; then | 
 | 468 |     if [ "x$1" = "x" -o "x$1" = "x-" ]; then | 
 | 469 |         test_dir=`basename "$oldwd"` | 
 | 470 |     else | 
 | 471 |         test_dir="$1" | 
 | 472 |     fi | 
 | 473 |  | 
 | 474 |     if [ '!' -d "$test_dir" ]; then | 
 | 475 |         td2=`echo ${test_dir}-*` | 
 | 476 |         if [ '!' -d "$td2" ]; then | 
 | 477 |             echo "${test_dir}: no such test directory" 1>&2 | 
 | 478 |             usage="yes" | 
 | 479 |         fi | 
 | 480 |         test_dir="$td2" | 
 | 481 |     fi | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 482 |     # Shift to get rid of the test name argument. The rest of the arguments | 
 | 483 |     # will get passed to the test run. | 
 | 484 |     shift | 
 | 485 | fi | 
 | 486 |  | 
 | 487 | if [ "$usage" = "yes" ]; then | 
 | 488 |     prog=`basename $prog` | 
 | 489 |     ( | 
 | 490 |         echo "usage:" | 
 | 491 |         echo "  $prog --help                          Print this message." | 
 | 492 |         echo "  $prog [options] [test-name]           Run test normally." | 
 | 493 |         echo "  $prog --dev [options] [test-name]     Development mode" \ | 
 | 494 |              "(dumps to stdout)." | 
 | 495 |         echo "  $prog --update [options] [test-name]  Update mode" \ | 
 | 496 |              "(replaces expected.txt)." | 
 | 497 |         echo '  Omitting the test name or specifying "-" will use the' \ | 
 | 498 |              "current directory." | 
 | 499 |         echo "  Runtime Options:" | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 500 |         echo "    -O                    Run non-debug rather than debug build (off by default)." | 
 | 501 |         echo "    -Xcompiler-option     Pass an option to the compiler." | 
 | 502 |         echo "    --runtime-option      Pass an option to the runtime." | 
 | 503 |         echo "    --debug               Wait for a debugger to attach." | 
| Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 504 |         echo "    --debuggable          Whether to compile Java code for a debugger." | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 505 |         echo "    --gdb                 Run under gdb; incompatible with some tests." | 
 | 506 |         echo "    --build-only          Build test files only (off by default)." | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 507 |         echo "    --build-with-javac-dx Build test files with javac and dx (on by default)." | 
 | 508 |         echo "    --build-with-jack     Build test files with jack and jill (off by default)." | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 509 |         echo "    --interpreter         Enable interpreter only mode (off by default)." | 
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 510 |         echo "    --jit                 Enable jit (off by default)." | 
| Nicolas Geoffray | 0e07125 | 2015-03-21 13:43:15 +0000 | [diff] [blame] | 511 |         echo "    --optimizing          Enable optimizing compiler (default)." | 
 | 512 |         echo "    --quick               Use Quick compiler (off by default)." | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 513 |         echo "    --no-verify           Turn off verification (on by default)." | 
 | 514 |         echo "    --no-optimize         Turn off optimization (on by default)." | 
 | 515 |         echo "    --no-precise          Turn off precise GC (on by default)." | 
 | 516 |         echo "    --zygote              Spawn the process from the Zygote." \ | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 517 |              "If used, then the" | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 518 |         echo "                          other runtime options are ignored." | 
 | 519 |         echo "    --no-dex2oat          Run as though dex2oat was failing." | 
 | 520 |         echo "    --no-patchoat         Run as though patchoat was failing." | 
 | 521 |         echo "    --prebuild            Run dex2oat on the files before starting test. (default)" | 
 | 522 |         echo "    --no-prebuild         Do not run dex2oat on the files before starting" | 
 | 523 |         echo "                          the test." | 
 | 524 |         echo "    --relocate            Force the use of relocating in the test, making" | 
 | 525 |         echo "                          the image and oat files be relocated to a random" | 
 | 526 |         echo "                          address before running. (default)" | 
 | 527 |         echo "    --no-relocate         Force the use of no relocating in the test" | 
 | 528 |         echo "    --host                Use the host-mode virtual machine." | 
 | 529 |         echo "    --invoke-with         Pass --invoke-with option to runtime." | 
 | 530 |         echo "    --dalvik              Use Dalvik (off by default)." | 
 | 531 |         echo "    --jvm                 Use a host-local RI virtual machine." | 
 | 532 |         echo "    --output-path [path]  Location where to store the build" \ | 
| Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 533 |              "files." | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 534 |         echo "    --64                  Run the test in 64-bit mode" | 
 | 535 |         echo "    --trace               Run with method tracing" | 
| Andreas Gampe | b91205e | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 536 |         echo "    --stream              Run method tracing in streaming mode (requires --trace)" | 
| Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 537 |         echo "    --gcstress            Run with gc stress testing" | 
 | 538 |         echo "    --gcverify            Run with gc verification" | 
 | 539 |         echo "    --always-clean        Delete the test files even if the test fails." | 
 | 540 |         echo "    --android-root [path] The path on target for the android root. (/system by default)." | 
| Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 541 |         echo "    --dex2oat-swap        Use a dex2oat swap file." | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 542 |     ) 1>&2 | 
 | 543 |     exit 1 | 
 | 544 | fi | 
 | 545 |  | 
 | 546 | cd "$test_dir" | 
 | 547 | test_dir=`pwd` | 
 | 548 |  | 
 | 549 | td_info="${test_dir}/${info}" | 
 | 550 | td_expected="${test_dir}/${expected}" | 
 | 551 |  | 
| Brian Carlstrom | 22469aa | 2012-09-07 10:34:57 -0700 | [diff] [blame] | 552 | if [ ! -r $td_info ]; then | 
 | 553 |     echo "${test_dir}: missing file $td_info" 1>&2 | 
 | 554 |     exit 1 | 
 | 555 | fi | 
 | 556 |  | 
 | 557 | if [ ! -r $td_expected ]; then | 
 | 558 |     echo "${test_dir}: missing file $td_expected" 1>&2 | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 559 |     exit 1 | 
 | 560 | fi | 
 | 561 |  | 
 | 562 | # copy the test to a temp dir and run it | 
 | 563 |  | 
| Elliott Hughes | 510c878 | 2011-10-06 10:57:34 -0700 | [diff] [blame] | 564 | echo "${test_dir}: building..." 1>&2 | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 565 |  | 
 | 566 | rm -rf "$tmp_dir" | 
 | 567 | cp -Rp "$test_dir" "$tmp_dir" | 
 | 568 | cd "$tmp_dir" | 
 | 569 |  | 
 | 570 | if [ '!' -r "$build" ]; then | 
 | 571 |     cp "${progdir}/etc/default-build" build | 
 | 572 | fi | 
 | 573 |  | 
 | 574 | if [ '!' -r "$run" ]; then | 
 | 575 |     cp "${progdir}/etc/default-run" run | 
 | 576 | fi | 
 | 577 |  | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 578 | if [ '!' -r "$check_cmd" ]; then | 
 | 579 |     cp "${progdir}/etc/default-check" check | 
 | 580 | fi | 
 | 581 |  | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 582 | chmod 755 "$build" | 
 | 583 | chmod 755 "$run" | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 584 | chmod 755 "$check_cmd" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 585 |  | 
| Elliott Hughes | 8cbc8bc | 2011-10-04 11:19:45 -0700 | [diff] [blame] | 586 | export TEST_NAME=`basename ${test_dir}` | 
 | 587 |  | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 588 | # Tests named '<number>-checker-*' will also have their CFGs verified with | 
 | 589 | # Checker when compiled with Optimizing on host. | 
 | 590 | if [[ "$TEST_NAME" =~ ^[0-9]+-checker- ]]; then | 
 | 591 |   # Build Checker DEX files without dx's optimizations so the input to dex2oat | 
 | 592 |   # better resembles the Java source. We always build the DEX the same way, even | 
 | 593 |   # if Checker is not invoked and the test only runs the program. | 
 | 594 |   build_args="${build_args} --dx-option --no-optimize" | 
 | 595 |  | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 596 |   # Jack does not necessarily generate the same DEX output than dx. Because these tests depend | 
 | 597 |   # on a particular DEX output, keep building them with dx for now (b/19467889). | 
 | 598 |   USE_JACK="false" | 
 | 599 |  | 
| Nicolas Geoffray | e730729 | 2015-03-17 18:12:06 +0000 | [diff] [blame] | 600 |   if [ "$runtime" = "art" -a "$image_suffix" = "-optimizing" -a "$target_mode" = "no" -a "$debuggable" = "no" ]; then | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 601 |     run_checker="yes" | 
 | 602 |     run_args="${run_args} -Xcompiler-option --dump-cfg=$tmp_dir/$cfg_output \ | 
 | 603 |                           -Xcompiler-option -j1" | 
 | 604 |   fi | 
 | 605 | fi | 
 | 606 |  | 
| Ian Rogers | 997f0f9 | 2014-06-21 22:58:05 -0700 | [diff] [blame] | 607 | # To cause tests to fail fast, limit the file sizes created by dx, dex2oat and ART output to 2MB. | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 608 | build_file_size_limit=2048 | 
 | 609 | run_file_size_limit=2048 | 
| Ian Rogers | 997f0f9 | 2014-06-21 22:58:05 -0700 | [diff] [blame] | 610 | if echo "$test_dir" | grep 089; then | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 611 |   build_file_size_limit=5120 | 
 | 612 |   run_file_size_limit=5120 | 
| Ian Rogers | 997f0f9 | 2014-06-21 22:58:05 -0700 | [diff] [blame] | 613 | elif echo "$test_dir" | grep 083; then | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 614 |   build_file_size_limit=5120 | 
 | 615 |   run_file_size_limit=5120 | 
| Ian Rogers | 997f0f9 | 2014-06-21 22:58:05 -0700 | [diff] [blame] | 616 | fi | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 617 | if [ ${USE_JACK} = "false" ]; then | 
 | 618 |   # Set ulimit if we build with dx only, Jack can generate big temp files. | 
 | 619 |   if ! ulimit -S "$build_file_size_limit"; then | 
 | 620 |     echo "ulimit file size setting failed" | 
 | 621 |   fi | 
| Ian Rogers | 997f0f9 | 2014-06-21 22:58:05 -0700 | [diff] [blame] | 622 | fi | 
 | 623 |  | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 624 | good="no" | 
| Nicolas Geoffray | 1ed097d | 2014-11-13 15:15:39 +0000 | [diff] [blame] | 625 | good_build="yes" | 
 | 626 | good_run="yes" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 627 | if [ "$dev_mode" = "yes" ]; then | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 628 |     "./${build}" $build_args 2>&1 | 
| Elliott Hughes | 7ab3a2a | 2012-06-18 16:34:20 -0700 | [diff] [blame] | 629 |     build_exit="$?" | 
 | 630 |     echo "build exit status: $build_exit" 1>&2 | 
 | 631 |     if [ "$build_exit" = '0' ]; then | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 632 |         if ! ulimit -S "$run_file_size_limit"; then | 
 | 633 |           echo "ulimit file size setting failed" | 
 | 634 |         fi | 
| Elliott Hughes | 2bfc673 | 2012-11-27 20:40:51 -0800 | [diff] [blame] | 635 |         echo "${test_dir}: running..." 1>&2 | 
 | 636 |         "./${run}" $run_args "$@" 2>&1 | 
| Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 637 |         run_exit="$?" | 
| Calin Juravle | 3cf4877 | 2015-01-26 16:47:33 +0000 | [diff] [blame] | 638 |  | 
| Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 639 |         if [ "$run_exit" = "0" ]; then | 
| Calin Juravle | 3cf4877 | 2015-01-26 16:47:33 +0000 | [diff] [blame] | 640 |             if [ "$run_checker" = "yes" ]; then | 
 | 641 |                 "$checker" "$cfg_output" "$tmp_dir" 2>&1 | 
 | 642 |                 checker_exit="$?" | 
 | 643 |                 if [ "$checker_exit" = "0" ]; then | 
 | 644 |                     good="yes" | 
 | 645 |                 fi | 
 | 646 |                 echo "checker exit status: $checker_exit" 1>&2 | 
 | 647 |             else | 
 | 648 |                 good="yes" | 
 | 649 |             fi | 
| Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 650 |         fi | 
| Calin Juravle | 3cf4877 | 2015-01-26 16:47:33 +0000 | [diff] [blame] | 651 |         echo "run exit status: $run_exit" 1>&2 | 
| Elliott Hughes | 7ab3a2a | 2012-06-18 16:34:20 -0700 | [diff] [blame] | 652 |     fi | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 653 | elif [ "$update_mode" = "yes" ]; then | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 654 |     "./${build}" $build_args >"$build_output" 2>&1 | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 655 |     build_exit="$?" | 
 | 656 |     if [ "$build_exit" = '0' ]; then | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 657 |         if ! ulimit -S "$run_file_size_limit"; then | 
 | 658 |           echo "ulimit file size setting failed" | 
 | 659 |         fi | 
| Elliott Hughes | 2bfc673 | 2012-11-27 20:40:51 -0800 | [diff] [blame] | 660 |         echo "${test_dir}: running..." 1>&2 | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 661 |         "./${run}" $run_args "$@" >"$output" 2>&1 | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 662 |         if [ "$run_checker" = "yes" ]; then | 
 | 663 |           "$checker" -q "$cfg_output" "$tmp_dir" >> "$output" 2>&1 | 
 | 664 |         fi | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 665 |         sed -e 's/[[:cntrl:]]$//g' < "$output" >"${td_expected}" | 
 | 666 |         good="yes" | 
 | 667 |     else | 
 | 668 |         cat "$build_output" 1>&2 | 
 | 669 |         echo "build exit status: $build_exit" 1>&2 | 
 | 670 |     fi | 
| Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 671 | elif [ "$build_only" = "yes" ]; then | 
 | 672 |     good="yes" | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 673 |     "./${build}" $build_args >"$build_output" 2>&1 | 
| Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 674 |     build_exit="$?" | 
 | 675 |     if [ "$build_exit" '!=' '0' ]; then | 
 | 676 |         cp "$build_output" "$output" | 
 | 677 |         echo "build exit status: $build_exit" >>"$output" | 
 | 678 |         diff --strip-trailing-cr -q "$expected" "$output" >/dev/null | 
 | 679 |         if [ "$?" '!=' "0" ]; then | 
 | 680 |             good="no" | 
 | 681 |             echo "BUILD FAILED For ${TEST_NAME}" | 
 | 682 |         fi | 
 | 683 |     fi | 
| Tsu Chiang Chuang | 379e2f5 | 2013-08-20 12:24:52 -0700 | [diff] [blame] | 684 |     # Clean up extraneous files that are not used by tests. | 
| Tsu Chiang Chuang | 0160d99 | 2013-09-13 14:17:42 -0700 | [diff] [blame] | 685 |     find $tmp_dir -mindepth 1  ! -regex ".*/\(.*jar\|$output\|$expected\)" | xargs rm -rf | 
| Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 686 |     exit 0 | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 687 | else | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 688 |     "./${build}" $build_args >"$build_output" 2>&1 | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 689 |     build_exit="$?" | 
 | 690 |     if [ "$build_exit" = '0' ]; then | 
| Sebastien Hertz | 5ee9454 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 691 |         if ! ulimit -S "$run_file_size_limit"; then | 
 | 692 |           echo "ulimit file size setting failed" | 
 | 693 |         fi | 
| Elliott Hughes | 2bfc673 | 2012-11-27 20:40:51 -0800 | [diff] [blame] | 694 |         echo "${test_dir}: running..." 1>&2 | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 695 |         "./${run}" $run_args "$@" >"$output" 2>&1 | 
| Nicolas Geoffray | 1ed097d | 2014-11-13 15:15:39 +0000 | [diff] [blame] | 696 |         run_exit="$?" | 
 | 697 |         if [ "$run_exit" != "0" ]; then | 
 | 698 |             echo "run exit status: $run_exit" 1>&2 | 
 | 699 |             good_run="no" | 
| David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 700 |         elif [ "$run_checker" = "yes" ]; then | 
 | 701 |             "$checker" -q "$cfg_output" "$tmp_dir" >> "$output" 2>&1 | 
 | 702 |             checker_exit="$?" | 
 | 703 |             if [ "$checker_exit" != "0" ]; then | 
 | 704 |                 echo "checker exit status: $checker_exit" 1>&2 | 
 | 705 |                 good_run="no" | 
 | 706 |             else | 
 | 707 |                 good_run="yes" | 
 | 708 |             fi | 
| Nicolas Geoffray | 1ed097d | 2014-11-13 15:15:39 +0000 | [diff] [blame] | 709 |         else | 
 | 710 |             good_run="yes" | 
 | 711 |         fi | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 712 |     else | 
| Nicolas Geoffray | 1ed097d | 2014-11-13 15:15:39 +0000 | [diff] [blame] | 713 |         good_build="no" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 714 |         cp "$build_output" "$output" | 
| Andreas Gampe | f6930a8 | 2014-10-21 09:33:08 -0700 | [diff] [blame] | 715 |         echo "Failed to build in tmpdir=${tmp_dir} from oldwd=${oldwd} and cwd=`pwd`" >> "$output" | 
 | 716 |         echo "Non-canonical tmpdir was ${noncanonical_tmp_dir}" >> "$output" | 
| Ian Rogers | d9ad27d | 2014-10-27 13:48:21 -0700 | [diff] [blame] | 717 |         echo "Args: ${args}" >> "$output" | 
| Andreas Gampe | f6930a8 | 2014-10-21 09:33:08 -0700 | [diff] [blame] | 718 |         echo "build exit status: $build_exit" >> "$output" | 
| Andreas Gampe | 5c11490 | 2014-10-27 17:03:58 -0700 | [diff] [blame] | 719 |         max_name_length=$(getconf NAME_MAX ${tmp_dir}) | 
 | 720 |         echo "Max filename (NAME_MAX): ${max_name_length}" >> "$output" | 
 | 721 |         max_path_length=$(getconf PATH_MAX ${tmp_dir}) | 
| Andreas Gampe | 602fbcd | 2014-10-27 17:06:29 -0700 | [diff] [blame] | 722 |         echo "Max pathlength (PATH_MAX): ${max_path_length}" >> "$output" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 723 |     fi | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 724 |     ./$check_cmd "$expected" "$output" | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 725 |     if [ "$?" = "0" ]; then | 
| Nicolas Geoffray | 1ed097d | 2014-11-13 15:15:39 +0000 | [diff] [blame] | 726 |         if [ "$good_build" = "no" -o "$good_run" = "yes" ]; then | 
 | 727 |           # output == expected | 
 | 728 |           good="yes" | 
 | 729 |           echo "${test_dir}: succeeded!" 1>&2 | 
 | 730 |         fi | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 731 |     fi | 
 | 732 | fi | 
 | 733 |  | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 734 | ( | 
| Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 735 |     if [ "$good" != "yes" -a "$update_mode" != "yes" ]; then | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 736 |         echo "${test_dir}: FAILED!" | 
 | 737 |         echo ' ' | 
 | 738 |         echo '#################### info' | 
 | 739 |         cat "${td_info}" | sed 's/^/# /g' | 
 | 740 |         echo '#################### diffs' | 
| Ian Rogers | 75deec0 | 2014-11-23 20:07:39 -0800 | [diff] [blame] | 741 |         diff --strip-trailing-cr -u "$expected" "$output" | tail -n 2000 | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 742 |         echo '####################' | 
 | 743 |         echo ' ' | 
 | 744 |     fi | 
| Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 745 |  | 
 | 746 | ) 1>&2 | 
 | 747 |  | 
 | 748 | # Clean up test files. | 
 | 749 | if [ "$always_clean" = "yes" -o "$good" = "yes" ]; then | 
 | 750 |     cd "$oldwd" | 
 | 751 |     rm -rf "$tmp_dir" | 
 | 752 |     if [ "$target_mode" = "yes" -a "$build_exit" = "0" ]; then | 
 | 753 |         adb shell rm -rf $DEX_LOCATION | 
 | 754 |     fi | 
 | 755 |     if [ "$good" = "yes" ]; then | 
 | 756 |         exit 0 | 
 | 757 |     fi | 
 | 758 | fi | 
 | 759 |  | 
 | 760 |  | 
 | 761 | ( | 
 | 762 |     if [ "$always_clean" = "yes" ]; then | 
 | 763 |         echo "${TEST_NAME} files deleted from host " | 
 | 764 |         if [ "$target_mode" == "yes" ]; then | 
 | 765 |             echo "and from target" | 
 | 766 |         fi | 
 | 767 |     else | 
 | 768 |         echo "${TEST_NAME} files left in ${tmp_dir} on host" | 
 | 769 |         if [ "$target_mode" == "yes" ]; then | 
 | 770 |             echo "and in ${DEX_LOCATION} on target" | 
 | 771 |         fi | 
| Brian Carlstrom | 105215d | 2012-06-14 12:50:44 -0700 | [diff] [blame] | 772 |     fi | 
 | 773 |  | 
| jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 774 | ) 1>&2 | 
 | 775 |  | 
 | 776 | exit 1 |