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 |
Andreas Gampe | 34a8a0f | 2016-07-20 21:09:29 -0700 | [diff] [blame] | 40 | tmp_dir="${TMPDIR}/${test_dir}" |
Andreas Gampe | 5a79fde | 2014-08-06 13:12:26 -0700 | [diff] [blame] | 41 | fi |
David Brazdil | 2c27f2c | 2015-05-12 18:06:38 +0100 | [diff] [blame] | 42 | checker="${progdir}/../tools/checker/checker.py" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 43 | export JAVA="java" |
Orion Hodson | 64fe3be | 2018-06-15 12:50:22 +0100 | [diff] [blame] | 44 | export JAVAC="javac -g -Xlint:-options -source 1.8 -target 1.8" |
Nicolas Geoffray | 1a58b7f | 2014-10-06 12:23:04 +0100 | [diff] [blame] | 45 | export RUN="${progdir}/etc/run-test-jar" |
Brian Carlstrom | 105215d | 2012-06-14 12:50:44 -0700 | [diff] [blame] | 46 | export DEX_LOCATION=/data/run-test/${test_dir} |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 47 | |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 48 | # ANDROID_BUILD_TOP is not set in a build environment. |
| 49 | if [ -z "$ANDROID_BUILD_TOP" ]; then |
| 50 | export ANDROID_BUILD_TOP=$oldwd |
| 51 | fi |
| 52 | |
Dan Willemsen | 12371e9 | 2017-03-06 17:55:20 -0800 | [diff] [blame] | 53 | # OUT_DIR defaults to out, and may be relative to $ANDROID_BUILD_TOP. |
| 54 | # Convert it to an absolute path, since we cd into the tmp_dir to run the tests. |
| 55 | export OUT_DIR=${OUT_DIR:-out} |
| 56 | if [[ "$OUT_DIR" != /* ]]; then |
| 57 | export OUT_DIR=$ANDROID_BUILD_TOP/$OUT_DIR |
| 58 | fi |
| 59 | |
Andreas Gampe | f47fb2f | 2016-06-24 22:30:29 -0700 | [diff] [blame] | 60 | # ANDROID_HOST_OUT is not set in a build environment. |
| 61 | if [ -z "$ANDROID_HOST_OUT" ]; then |
Dan Willemsen | 12371e9 | 2017-03-06 17:55:20 -0800 | [diff] [blame] | 62 | export ANDROID_HOST_OUT=${OUT_DIR}/host/linux-x86 |
Andreas Gampe | f47fb2f | 2016-06-24 22:30:29 -0700 | [diff] [blame] | 63 | fi |
| 64 | |
Alex Light | 680cbf2 | 2018-10-31 11:00:19 -0700 | [diff] [blame] | 65 | host_lib_root=${ANDROID_HOST_OUT} |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 66 | chroot= |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 67 | info="info.txt" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 68 | run="run" |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 69 | expected_stdout="expected-stdout.txt" |
| 70 | expected_stderr="expected-stderr.txt" |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 71 | check_cmd="check" |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 72 | test_stdout="test-stdout.txt" |
| 73 | test_stderr="test-stderr.txt" |
David Brazdil | 24128c6 | 2015-05-21 12:06:13 +0100 | [diff] [blame] | 74 | cfg_output="graph.cfg" |
Hiroshi Yamauchi | 1d4184d | 2015-07-13 17:11:22 -0700 | [diff] [blame] | 75 | strace_output="strace-output.txt" |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 76 | lib="libartd.so" |
Mathieu Chartier | 031768a | 2015-08-27 10:25:02 -0700 | [diff] [blame] | 77 | testlib="arttestd" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 78 | run_args=(--quiet) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 79 | |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 80 | quiet="no" |
Nicolas Geoffray | a3d90fb | 2015-03-16 13:55:40 +0000 | [diff] [blame] | 81 | debuggable="no" |
Alex Light | 9d72253 | 2014-07-22 18:07:12 -0700 | [diff] [blame] | 82 | prebuild_mode="yes" |
Brian Carlstrom | 2613de4 | 2012-06-15 17:37:16 -0700 | [diff] [blame] | 83 | target_mode="yes" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 84 | dev_mode="no" |
Alex Light | 8d94ddd | 2019-12-18 11:13:03 -0800 | [diff] [blame] | 85 | create_runner="no" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 86 | update_mode="no" |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 87 | debug_mode="no" |
Nicolas Geoffray | 94e25db | 2017-01-27 14:54:28 +0000 | [diff] [blame] | 88 | relocate="no" |
Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 89 | runtime="art" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 90 | usage="no" |
Andreas Gampe | 2fe0792 | 2014-04-21 07:50:39 -0700 | [diff] [blame] | 91 | suffix64="" |
Jeff Hao | 85139a3 | 2014-07-23 11:52:52 -0700 | [diff] [blame] | 92 | trace="false" |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 93 | trace_stream="false" |
Alex Light | e7873ec | 2014-08-12 09:53:50 -0700 | [diff] [blame] | 94 | basic_verify="false" |
| 95 | gc_verify="false" |
| 96 | gc_stress="false" |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 97 | jvmti_trace_stress="false" |
Alex Light | 43e935d | 2017-06-19 15:40:40 -0700 | [diff] [blame] | 98 | jvmti_field_stress="false" |
Alex Light | c38c369 | 2017-06-27 15:45:14 -0700 | [diff] [blame] | 99 | jvmti_step_stress="false" |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 100 | jvmti_redefine_stress="false" |
Hiroshi Yamauchi | 1d4184d | 2015-07-13 17:11:22 -0700 | [diff] [blame] | 101 | strace="false" |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 102 | always_clean="no" |
Igor Murashkin | 05f30e1 | 2015-06-10 15:57:17 -0700 | [diff] [blame] | 103 | never_clean="no" |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 104 | have_image="yes" |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 105 | android_root="/system" |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 106 | bisection_search="no" |
Martin Stjernholm | 4815e72 | 2019-09-24 16:20:09 +0100 | [diff] [blame] | 107 | timeout="" |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 108 | suspend_timeout="500000" |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 109 | run_optimizing="false" |
Stelios Ioannou | 1b62122 | 2021-06-17 14:15:45 +0100 | [diff] [blame] | 110 | dump_cfg="false" |
| 111 | dump_cfg_path="" |
Alex Light | 20802ca | 2018-12-05 15:36:03 -0800 | [diff] [blame] | 112 | # To cause tests to fail fast, limit the file sizes created by dx, dex2oat and |
| 113 | # ART output to approximately 128MB. This should be more than sufficient |
| 114 | # for any test while still catching cases of runaway output. |
| 115 | # Set a hard limit to encourage ART developers to increase the ulimit here if |
| 116 | # needed to support a test case rather than resetting the limit in the run |
| 117 | # script for the particular test in question. Adjust this if needed for |
| 118 | # particular configurations. |
| 119 | file_ulimit=128000 |
| 120 | |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 121 | |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 122 | while true; do |
| 123 | if [ "x$1" = "x--host" ]; then |
Brian Carlstrom | 2613de4 | 2012-06-15 17:37:16 -0700 | [diff] [blame] | 124 | target_mode="no" |
TDYa127 | b92bcab | 2012-04-08 00:09:51 -0700 | [diff] [blame] | 125 | DEX_LOCATION=$tmp_dir |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 126 | run_args+=(--host) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 127 | shift |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 128 | elif [ "x$1" = "x--quiet" ]; then |
| 129 | quiet="yes" |
| 130 | shift |
Alex Light | eb7c144 | 2015-08-31 13:17:42 -0700 | [diff] [blame] | 131 | elif [ "x$1" = "x--use-java-home" ]; then |
| 132 | if [ -n "${JAVA_HOME}" ]; then |
| 133 | export JAVA="${JAVA_HOME}/bin/java" |
| 134 | export JAVAC="${JAVA_HOME}/bin/javac -g" |
| 135 | else |
| 136 | echo "Passed --use-java-home without JAVA_HOME variable set!" |
| 137 | usage="yes" |
| 138 | fi |
| 139 | shift |
Elliott Hughes | 58bcc40 | 2012-02-14 14:10:10 -0800 | [diff] [blame] | 140 | elif [ "x$1" = "x--jvm" ]; then |
Brian Carlstrom | 2613de4 | 2012-06-15 17:37:16 -0700 | [diff] [blame] | 141 | target_mode="no" |
Alex Light | 2c7aaeb | 2017-01-27 14:08:17 -0800 | [diff] [blame] | 142 | DEX_LOCATION="$tmp_dir" |
Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 143 | runtime="jvm" |
Brian Carlstrom | 01afdba | 2014-10-03 10:28:47 -0700 | [diff] [blame] | 144 | prebuild_mode="no" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 145 | run_args+=(--jvm) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 146 | shift |
Elliott Hughes | 58bcc40 | 2012-02-14 14:10:10 -0800 | [diff] [blame] | 147 | elif [ "x$1" = "x-O" ]; then |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 148 | lib="libart.so" |
Mathieu Chartier | 031768a | 2015-08-27 10:25:02 -0700 | [diff] [blame] | 149 | testlib="arttest" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 150 | run_args+=(-O) |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 151 | shift |
| 152 | elif [ "x$1" = "x--dalvik" ]; then |
| 153 | lib="libdvm.so" |
Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 154 | runtime="dalvik" |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 155 | shift |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 156 | elif [ "x$1" = "x--no-image" ]; then |
| 157 | have_image="no" |
| 158 | shift |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 159 | elif [ "x$1" = "x--relocate" ]; then |
| 160 | relocate="yes" |
| 161 | shift |
| 162 | elif [ "x$1" = "x--no-relocate" ]; then |
| 163 | relocate="no" |
| 164 | shift |
| 165 | elif [ "x$1" = "x--prebuild" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 166 | run_args+=(--prebuild) |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 167 | prebuild_mode="yes" |
| 168 | shift; |
Mathieu Chartier | dcd56c9 | 2017-11-20 20:30:24 -0800 | [diff] [blame] | 169 | elif [ "x$1" = "x--compact-dex-level" ]; then |
| 170 | option="$1" |
| 171 | shift |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 172 | run_args+=("$option" "$1") |
Mathieu Chartier | dcd56c9 | 2017-11-20 20:30:24 -0800 | [diff] [blame] | 173 | shift; |
Richard Uhler | 76f5cb6 | 2016-04-04 13:30:16 -0700 | [diff] [blame] | 174 | elif [ "x$1" = "x--strip-dex" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 175 | run_args+=(--strip-dex) |
Richard Uhler | 76f5cb6 | 2016-04-04 13:30:16 -0700 | [diff] [blame] | 176 | shift; |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 177 | elif [ "x$1" = "x--debuggable" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 178 | run_args+=(-Xcompiler-option --debuggable) |
Nicolas Geoffray | a3d90fb | 2015-03-16 13:55:40 +0000 | [diff] [blame] | 179 | debuggable="yes" |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 180 | shift; |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 181 | elif [ "x$1" = "x--no-prebuild" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 182 | run_args+=(--no-prebuild) |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 183 | prebuild_mode="no" |
| 184 | shift; |
Alex Light | e7873ec | 2014-08-12 09:53:50 -0700 | [diff] [blame] | 185 | elif [ "x$1" = "x--gcverify" ]; then |
| 186 | basic_verify="true" |
| 187 | gc_verify="true" |
| 188 | shift |
| 189 | elif [ "x$1" = "x--gcstress" ]; then |
| 190 | basic_verify="true" |
| 191 | gc_stress="true" |
| 192 | shift |
Alex Light | c38c369 | 2017-06-27 15:45:14 -0700 | [diff] [blame] | 193 | elif [ "x$1" = "x--jvmti-step-stress" ]; then |
| 194 | jvmti_step_stress="true" |
| 195 | shift |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 196 | elif [ "x$1" = "x--jvmti-redefine-stress" ]; then |
| 197 | jvmti_redefine_stress="true" |
| 198 | shift |
Alex Light | 43e935d | 2017-06-19 15:40:40 -0700 | [diff] [blame] | 199 | elif [ "x$1" = "x--jvmti-field-stress" ]; then |
| 200 | jvmti_field_stress="true" |
| 201 | shift |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 202 | elif [ "x$1" = "x--jvmti-trace-stress" ]; then |
| 203 | jvmti_trace_stress="true" |
Alex Light | 8f2c6d4 | 2017-04-10 16:27:35 -0700 | [diff] [blame] | 204 | shift |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 205 | elif [ "x$1" = "x--suspend-timeout" ]; then |
| 206 | shift |
| 207 | suspend_timeout="$1" |
| 208 | shift |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 209 | elif [ "x$1" = "x--image" ]; then |
| 210 | shift |
| 211 | image="$1" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 212 | run_args+=(--image "$image") |
Elliott Hughes | 7c04610 | 2011-10-19 18:16:03 -0700 | [diff] [blame] | 213 | shift |
Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 214 | elif [ "x$1" = "x-Xcompiler-option" ]; then |
| 215 | shift |
| 216 | option="$1" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 217 | run_args+=(-Xcompiler-option "$option") |
Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 218 | shift |
Mathieu Chartier | 769a5ad | 2014-05-18 15:30:10 -0700 | [diff] [blame] | 219 | elif [ "x$1" = "x--runtime-option" ]; then |
| 220 | shift |
| 221 | option="$1" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 222 | run_args+=(--runtime-option "$option") |
Mathieu Chartier | 769a5ad | 2014-05-18 15:30:10 -0700 | [diff] [blame] | 223 | shift |
Mathieu Chartier | c0a8a80 | 2014-10-17 15:58:01 -0700 | [diff] [blame] | 224 | elif [ "x$1" = "x--gdb-arg" ]; then |
| 225 | shift |
| 226 | gdb_arg="$1" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 227 | run_args+=(--gdb-arg "$gdb_arg") |
Mathieu Chartier | c0a8a80 | 2014-10-17 15:58:01 -0700 | [diff] [blame] | 228 | shift |
Stelios Ioannou | 816b0da | 2021-06-03 13:25:50 +0100 | [diff] [blame] | 229 | elif [ "x$1" = "x--gdb-dex2oat-args" ]; then |
| 230 | shift |
| 231 | gdb_dex2oat_args="$1" |
| 232 | run_args+=(--gdb-dex2oat-args "$gdb_dex2oat_args") |
| 233 | shift |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 234 | elif [ "x$1" = "x--debug" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 235 | run_args+=(--debug) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 236 | shift |
Alex Light | c281ba5 | 2017-10-11 11:35:55 -0700 | [diff] [blame] | 237 | elif [ "x$1" = "x--debug-wrap-agent" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 238 | run_args+=(--debug-wrap-agent) |
Alex Light | c281ba5 | 2017-10-11 11:35:55 -0700 | [diff] [blame] | 239 | shift |
Alex Light | 0e151e7 | 2017-10-25 10:50:35 -0700 | [diff] [blame] | 240 | elif [ "x$1" = "x--with-agent" ]; then |
| 241 | shift |
| 242 | option="$1" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 243 | run_args+=(--with-agent "$1") |
Alex Light | 0e151e7 | 2017-10-25 10:50:35 -0700 | [diff] [blame] | 244 | shift |
Alex Light | c281ba5 | 2017-10-11 11:35:55 -0700 | [diff] [blame] | 245 | elif [ "x$1" = "x--debug-agent" ]; then |
| 246 | shift |
| 247 | option="$1" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 248 | run_args+=(--debug-agent "$1") |
Alex Light | c281ba5 | 2017-10-11 11:35:55 -0700 | [diff] [blame] | 249 | shift |
Stelios Ioannou | 1b62122 | 2021-06-17 14:15:45 +0100 | [diff] [blame] | 250 | elif [ "x$1" = "x--dump-cfg" ]; then |
| 251 | shift |
| 252 | dump_cfg="true" |
| 253 | dump_cfg_path="$1" |
| 254 | shift |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 255 | elif [ "x$1" = "x--gdb" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 256 | run_args+=(--gdb) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 257 | dev_mode="yes" |
| 258 | shift |
Stelios Ioannou | 816b0da | 2021-06-03 13:25:50 +0100 | [diff] [blame] | 259 | elif [ "x$1" = "x--gdb-dex2oat" ]; then |
| 260 | run_args+=(--gdb-dex2oat) |
| 261 | dev_mode="yes" |
| 262 | shift |
Alex Light | e4b4a18 | 2019-02-12 14:19:49 -0800 | [diff] [blame] | 263 | elif [ "x$1" = "x--gdbserver-bin" ]; then |
| 264 | shift |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 265 | run_args+=(--gdbserver-bin "$1") |
Alex Light | e4b4a18 | 2019-02-12 14:19:49 -0800 | [diff] [blame] | 266 | shift |
| 267 | elif [ "x$1" = "x--gdbserver-port" ]; then |
| 268 | shift |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 269 | run_args+=(--gdbserver-port "$1") |
Alex Light | e4b4a18 | 2019-02-12 14:19:49 -0800 | [diff] [blame] | 270 | shift |
| 271 | elif [ "x$1" = "x--gdbserver" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 272 | run_args+=(--gdbserver) |
Alex Light | e4b4a18 | 2019-02-12 14:19:49 -0800 | [diff] [blame] | 273 | dev_mode="yes" |
| 274 | shift |
Hiroshi Yamauchi | 1d4184d | 2015-07-13 17:11:22 -0700 | [diff] [blame] | 275 | elif [ "x$1" = "x--strace" ]; then |
| 276 | strace="yes" |
Martin Stjernholm | 4815e72 | 2019-09-24 16:20:09 +0100 | [diff] [blame] | 277 | run_args+=(--invoke-with strace --invoke-with -o --invoke-with "$tmp_dir/$strace_output") |
| 278 | timeout="${timeout:-1800}" |
Hiroshi Yamauchi | 1d4184d | 2015-07-13 17:11:22 -0700 | [diff] [blame] | 279 | shift |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 280 | elif [ "x$1" = "x--zygote" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 281 | run_args+=(--zygote) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 282 | shift |
jeffhao | 0dff3f4 | 2012-11-20 15:13:43 -0800 | [diff] [blame] | 283 | elif [ "x$1" = "x--interpreter" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 284 | run_args+=(--interpreter) |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 285 | shift |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 286 | elif [ "x$1" = "x--jit" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 287 | run_args+=(--jit) |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 288 | shift |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 289 | elif [ "x$1" = "x--baseline" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 290 | run_args+=(--baseline) |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 291 | shift |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 292 | elif [ "x$1" = "x--optimizing" ]; then |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 293 | run_optimizing="true" |
jeffhao | 0dff3f4 | 2012-11-20 15:13:43 -0800 | [diff] [blame] | 294 | shift |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 295 | elif [ "x$1" = "x--no-verify" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 296 | run_args+=(--no-verify) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 297 | shift |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 298 | elif [ "x$1" = "x--verify-soft-fail" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 299 | run_args+=(--verify-soft-fail) |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 300 | shift |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 301 | elif [ "x$1" = "x--no-optimize" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 302 | run_args+=(--no-optimize) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 303 | shift |
| 304 | elif [ "x$1" = "x--no-precise" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 305 | run_args+=(--no-precise) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 306 | shift |
Orion Hodson | 9ca92fb | 2020-10-28 15:08:11 +0000 | [diff] [blame] | 307 | elif [ "x$1" = "x--external-log-tags" ]; then |
| 308 | run_args+=(--external-log-tags) |
| 309 | shift |
Elliott Hughes | 7c04610 | 2011-10-19 18:16:03 -0700 | [diff] [blame] | 310 | elif [ "x$1" = "x--invoke-with" ]; then |
| 311 | shift |
| 312 | what="$1" |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 313 | if [ "x$what" = "x" ]; then |
| 314 | echo "$0 missing argument to --invoke-with" 1>&2 |
| 315 | usage="yes" |
| 316 | break |
| 317 | fi |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 318 | run_args+=(--invoke-with "${what}") |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 319 | shift |
Alex Light | 8d94ddd | 2019-12-18 11:13:03 -0800 | [diff] [blame] | 320 | elif [ "x$1" = "x--create-runner" ]; then |
| 321 | run_args+=(--create-runner --dry-run) |
| 322 | dev_mode="yes" |
| 323 | never_clean="yes" |
| 324 | create_runner="yes" |
| 325 | shift |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 326 | elif [ "x$1" = "x--dev" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 327 | run_args+=(--dev) |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 328 | dev_mode="yes" |
| 329 | shift |
David Srbecky | ca15b8d | 2021-04-23 12:25:08 +0100 | [diff] [blame] | 330 | elif [ "x$1" = "x--temp-path" ]; then |
Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 331 | shift |
| 332 | tmp_dir=$1 |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 333 | if [ "x$tmp_dir" = "x" ]; then |
David Srbecky | ca15b8d | 2021-04-23 12:25:08 +0100 | [diff] [blame] | 334 | echo "$0 missing argument to --temp-path" 1>&2 |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 335 | usage="yes" |
| 336 | break |
| 337 | fi |
Tsu Chiang Chuang | 011fade | 2012-07-09 18:34:47 -0700 | [diff] [blame] | 338 | shift |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 339 | elif [ "x$1" = "x--chroot" ]; then |
| 340 | shift |
| 341 | if [ "x$1" = "x" ]; then |
| 342 | echo "$0 missing argument to --chroot" 1>&2 |
| 343 | usage="yes" |
| 344 | break |
| 345 | fi |
| 346 | chroot="$1" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 347 | run_args+=(--chroot "$1") |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 348 | shift |
Ulya Trafimovich | 7f7f644 | 2021-11-05 15:26:13 +0000 | [diff] [blame] | 349 | elif [ "x$1" = "x--simpleperf" ]; then |
| 350 | run_args+=(--simpleperf) |
| 351 | shift |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 352 | elif [ "x$1" = "x--android-root" ]; then |
| 353 | shift |
| 354 | if [ "x$1" = "x" ]; then |
| 355 | echo "$0 missing argument to --android-root" 1>&2 |
| 356 | usage="yes" |
| 357 | break |
| 358 | fi |
| 359 | android_root="$1" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 360 | run_args+=(--android-root "$1") |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 361 | shift |
Martin Stjernholm | e58624f | 2019-09-20 15:53:40 +0100 | [diff] [blame] | 362 | elif [ "x$1" = "x--android-art-root" ]; then |
Roland Levillain | 2807614 | 2019-01-10 16:39:25 +0000 | [diff] [blame] | 363 | shift |
| 364 | if [ "x$1" = "x" ]; then |
Martin Stjernholm | e58624f | 2019-09-20 15:53:40 +0100 | [diff] [blame] | 365 | echo "$0 missing argument to --android-art-root" 1>&2 |
Roland Levillain | 2807614 | 2019-01-10 16:39:25 +0000 | [diff] [blame] | 366 | usage="yes" |
| 367 | break |
| 368 | fi |
Martin Stjernholm | e58624f | 2019-09-20 15:53:40 +0100 | [diff] [blame] | 369 | run_args+=(--android-art-root "$1") |
Roland Levillain | 2807614 | 2019-01-10 16:39:25 +0000 | [diff] [blame] | 370 | shift |
Roland Levillain | 90b3457 | 2019-06-14 15:23:15 +0100 | [diff] [blame] | 371 | elif [ "x$1" = "x--android-tzdata-root" ]; then |
| 372 | shift |
| 373 | if [ "x$1" = "x" ]; then |
| 374 | echo "$0 missing argument to --android-tzdata-root" 1>&2 |
| 375 | usage="yes" |
| 376 | break |
| 377 | fi |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 378 | run_args+=(--android-tzdata-root "$1") |
Roland Levillain | 90b3457 | 2019-06-14 15:23:15 +0100 | [diff] [blame] | 379 | shift |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 380 | elif [ "x$1" = "x--update" ]; then |
| 381 | update_mode="yes" |
| 382 | shift |
| 383 | elif [ "x$1" = "x--help" ]; then |
| 384 | usage="yes" |
| 385 | shift |
Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 386 | elif [ "x$1" = "x--64" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 387 | run_args+=(--64) |
Andreas Gampe | 2fe0792 | 2014-04-21 07:50:39 -0700 | [diff] [blame] | 388 | suffix64="64" |
Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 389 | shift |
Alex Light | 680cbf2 | 2018-10-31 11:00:19 -0700 | [diff] [blame] | 390 | elif [ "x$1" = "x--bionic" ]; then |
| 391 | # soong linux_bionic builds are 64bit only. |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 392 | run_args+=(--bionic --host --64) |
Alex Light | 680cbf2 | 2018-10-31 11:00:19 -0700 | [diff] [blame] | 393 | suffix64="64" |
| 394 | target_mode="no" |
| 395 | DEX_LOCATION=$tmp_dir |
| 396 | host_lib_root=$OUT_DIR/soong/host/linux_bionic-x86 |
| 397 | shift |
Alex Light | 6f342dd | 2019-03-27 17:15:42 +0000 | [diff] [blame] | 398 | elif [ "x$1" = "x--runtime-extracted-zipapex" ]; then |
| 399 | shift |
| 400 | # TODO Should we allow the java.library.path to search the zipapex too? |
| 401 | # Not needed at the moment and adding it will be complicated so for now |
| 402 | # we'll ignore this. |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 403 | run_args+=(--host --runtime-extracted-zipapex "$1") |
Alex Light | 6f342dd | 2019-03-27 17:15:42 +0000 | [diff] [blame] | 404 | target_mode="no" |
| 405 | DEX_LOCATION=$tmp_dir |
| 406 | shift |
Alex Light | 20802ca | 2018-12-05 15:36:03 -0800 | [diff] [blame] | 407 | elif [ "x$1" = "x--runtime-zipapex" ]; then |
| 408 | shift |
| 409 | # TODO Should we allow the java.library.path to search the zipapex too? |
| 410 | # Not needed at the moment and adding it will be complicated so for now |
| 411 | # we'll ignore this. |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 412 | run_args+=(--host --runtime-zipapex "$1") |
Alex Light | 20802ca | 2018-12-05 15:36:03 -0800 | [diff] [blame] | 413 | target_mode="no" |
| 414 | DEX_LOCATION=$tmp_dir |
| 415 | # apex_payload.zip is quite large we need a high enough ulimit to |
| 416 | # extract it. 512mb should be good enough. |
| 417 | file_ulimit=512000 |
| 418 | shift |
Martin Stjernholm | 4815e72 | 2019-09-24 16:20:09 +0100 | [diff] [blame] | 419 | elif [ "x$1" = "x--timeout" ]; then |
| 420 | shift |
| 421 | if [ "x$1" = "x" ]; then |
| 422 | echo "$0 missing argument to --timeout" 1>&2 |
| 423 | usage="yes" |
| 424 | break |
| 425 | fi |
| 426 | timeout="$1" |
| 427 | shift |
Sebastien Hertz | 07aaac8 | 2014-07-09 15:59:05 +0200 | [diff] [blame] | 428 | elif [ "x$1" = "x--trace" ]; then |
Jeff Hao | 85139a3 | 2014-07-23 11:52:52 -0700 | [diff] [blame] | 429 | trace="true" |
Sebastien Hertz | 07aaac8 | 2014-07-09 15:59:05 +0200 | [diff] [blame] | 430 | shift |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 431 | elif [ "x$1" = "x--stream" ]; then |
| 432 | trace_stream="true" |
| 433 | shift |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 434 | elif [ "x$1" = "x--always-clean" ]; then |
| 435 | always_clean="yes" |
| 436 | shift |
Igor Murashkin | 05f30e1 | 2015-06-10 15:57:17 -0700 | [diff] [blame] | 437 | elif [ "x$1" = "x--never-clean" ]; then |
| 438 | never_clean="yes" |
| 439 | shift |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 440 | elif [ "x$1" = "x--dex2oat-swap" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 441 | run_args+=(--dex2oat-swap) |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 442 | shift |
Andreas Gampe | 4d2ef33 | 2015-08-05 09:24:45 -0700 | [diff] [blame] | 443 | elif [ "x$1" = "x--instruction-set-features" ]; then |
| 444 | shift |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 445 | run_args+=(--instruction-set-features "$1") |
Andreas Gampe | 4d2ef33 | 2015-08-05 09:24:45 -0700 | [diff] [blame] | 446 | shift |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 447 | elif [ "x$1" = "x--bisection-search" ]; then |
| 448 | bisection_search="yes" |
| 449 | shift |
Nicolas Geoffray | b0bbe8e | 2016-11-19 10:42:37 +0000 | [diff] [blame] | 450 | elif [ "x$1" = "x--vdex" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 451 | run_args+=(--vdex) |
Nicolas Geoffray | b0bbe8e | 2016-11-19 10:42:37 +0000 | [diff] [blame] | 452 | shift |
Nicolas Geoffray | baeaa9b | 2018-01-26 14:31:17 +0000 | [diff] [blame] | 453 | elif [ "x$1" = "x--dm" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 454 | run_args+=(--dm) |
Nicolas Geoffray | baeaa9b | 2018-01-26 14:31:17 +0000 | [diff] [blame] | 455 | shift |
Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 456 | elif [ "x$1" = "x--vdex-filter" ]; then |
| 457 | shift |
| 458 | filter=$1 |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 459 | run_args+=(--vdex-filter "$filter") |
Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 460 | shift |
Jeff Hao | 002b931 | 2017-03-27 16:23:08 -0700 | [diff] [blame] | 461 | elif [ "x$1" = "x--random-profile" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 462 | run_args+=(--random-profile) |
Jeff Hao | 002b931 | 2017-03-27 16:23:08 -0700 | [diff] [blame] | 463 | shift |
Shubham Ajmera | 981d99c | 2017-08-17 14:11:08 -0700 | [diff] [blame] | 464 | elif [ "x$1" = "x--dex2oat-jobs" ]; then |
| 465 | shift |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 466 | run_args+=(-Xcompiler-option "-j$1") |
Shubham Ajmera | 981d99c | 2017-08-17 14:11:08 -0700 | [diff] [blame] | 467 | shift |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 468 | elif expr "x$1" : "x--" >/dev/null 2>&1; then |
Elliott Hughes | 7c04610 | 2011-10-19 18:16:03 -0700 | [diff] [blame] | 469 | echo "unknown $0 option: $1" 1>&2 |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 470 | usage="yes" |
| 471 | break |
| 472 | else |
| 473 | break |
| 474 | fi |
| 475 | done |
Andreas Gampe | 3a12cfe | 2014-08-13 15:40:22 -0700 | [diff] [blame] | 476 | |
Orion Hodson | 6aa4e0d | 2018-05-25 09:39:16 +0100 | [diff] [blame] | 477 | if [ "$usage" = "no" -a "x$1" = "x" ]; then |
| 478 | echo "missing test to run" 1>&2 |
| 479 | usage="yes" |
| 480 | fi |
| 481 | |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 482 | # The DEX_LOCATION with the chroot prefix, if any. |
| 483 | chroot_dex_location="$chroot$DEX_LOCATION" |
| 484 | |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 485 | # Allocate file descriptor real_stderr and redirect it to the shell's error |
| 486 | # output (fd 2). |
| 487 | if [ ${BASH_VERSINFO[1]} -ge 4 ] && [ ${BASH_VERSINFO[2]} -ge 1 ]; then |
| 488 | exec {real_stderr}>&2 |
| 489 | else |
| 490 | # In bash before version 4.1 we need to do a manual search for free file |
| 491 | # descriptors. |
| 492 | FD=3 |
| 493 | while [ -e /dev/fd/$FD ]; do FD=$((FD + 1)); done |
| 494 | real_stderr=$FD |
| 495 | eval "exec ${real_stderr}>&2" |
| 496 | fi |
| 497 | if [ "$quiet" = "yes" ]; then |
| 498 | # Force the default standard output and error to go to /dev/null so we will |
| 499 | # not print them. |
| 500 | exec 1>/dev/null |
| 501 | exec 2>/dev/null |
| 502 | fi |
| 503 | |
| 504 | function err_echo() { |
| 505 | echo "$@" 1>&${real_stderr} |
| 506 | } |
| 507 | |
Andreas Gampe | 3a12cfe | 2014-08-13 15:40:22 -0700 | [diff] [blame] | 508 | # tmp_dir may be relative, resolve. |
| 509 | # |
| 510 | # Cannot use realpath, as it does not exist on Mac. |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 511 | # Cannot use a simple "cd", as the path might not be created yet. |
Brian Carlstrom | c580e04 | 2014-09-08 21:37:39 -0700 | [diff] [blame] | 512 | # Cannot use readlink -m, as it does not exist on Mac. |
| 513 | # Fallback to nuclear option: |
Andreas Gampe | 907b699 | 2014-08-18 22:26:49 -0700 | [diff] [blame] | 514 | noncanonical_tmp_dir=$tmp_dir |
Vladimir Marko | efbc659 | 2021-04-16 10:29:13 +0000 | [diff] [blame] | 515 | tmp_dir="`cd $oldwd ; python3 -c "import os; import sys; sys.stdout.write(os.path.realpath('$tmp_dir'))"`" |
Andreas Gampe | 86459c0 | 2019-08-29 14:01:18 -0700 | [diff] [blame] | 516 | if [ -z $tmp_dir ] ; then |
| 517 | err_echo "Failed to resolve $tmp_dir" |
| 518 | exit 1 |
| 519 | fi |
Dmitry Petrochenko | 81c56e7 | 2014-03-05 15:05:46 +0700 | [diff] [blame] | 520 | mkdir -p $tmp_dir |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 521 | |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 522 | # Add thread suspend timeout flag |
Narayan Kamath | f86c393 | 2017-01-24 17:40:47 +0000 | [diff] [blame] | 523 | if [ ! "$runtime" = "jvm" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 524 | run_args+=(--runtime-option "-XX:ThreadSuspendTimeout=$suspend_timeout") |
Narayan Kamath | f86c393 | 2017-01-24 17:40:47 +0000 | [diff] [blame] | 525 | fi |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 526 | |
Alex Light | e7873ec | 2014-08-12 09:53:50 -0700 | [diff] [blame] | 527 | if [ "$basic_verify" = "true" ]; then |
Hiroshi Yamauchi | 312baf1 | 2015-01-12 12:11:05 -0800 | [diff] [blame] | 528 | # Set HspaceCompactForOOMMinIntervalMs to zero to run hspace compaction for OOM more frequently in tests. |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 529 | 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] | 530 | fi |
| 531 | if [ "$gc_verify" = "true" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 532 | run_args+=(--runtime-option -Xgc:preverify_rosalloc --runtime-option -Xgc:postverify_rosalloc) |
Alex Light | e7873ec | 2014-08-12 09:53:50 -0700 | [diff] [blame] | 533 | fi |
| 534 | if [ "$gc_stress" = "true" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 535 | run_args+=(--gc-stress --runtime-option -Xgc:gcstress --runtime-option -Xms2m --runtime-option -Xmx16m) |
Alex Light | e7873ec | 2014-08-12 09:53:50 -0700 | [diff] [blame] | 536 | fi |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 537 | if [ "$jvmti_redefine_stress" = "true" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 538 | run_args+=(--no-app-image --jvmti-redefine-stress) |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 539 | fi |
Alex Light | c38c369 | 2017-06-27 15:45:14 -0700 | [diff] [blame] | 540 | if [ "$jvmti_step_stress" = "true" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 541 | run_args+=(--no-app-image --jvmti-step-stress) |
Alex Light | c38c369 | 2017-06-27 15:45:14 -0700 | [diff] [blame] | 542 | fi |
Alex Light | 43e935d | 2017-06-19 15:40:40 -0700 | [diff] [blame] | 543 | if [ "$jvmti_field_stress" = "true" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 544 | run_args+=(--no-app-image --jvmti-field-stress) |
Alex Light | 43e935d | 2017-06-19 15:40:40 -0700 | [diff] [blame] | 545 | fi |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 546 | if [ "$jvmti_trace_stress" = "true" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 547 | run_args+=(--no-app-image --jvmti-trace-stress) |
Alex Light | 8f2c6d4 | 2017-04-10 16:27:35 -0700 | [diff] [blame] | 548 | fi |
Jeff Hao | 85139a3 | 2014-07-23 11:52:52 -0700 | [diff] [blame] | 549 | if [ "$trace" = "true" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 550 | run_args+=(--runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file-size:2000000) |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 551 | if [ "$trace_stream" = "true" ]; then |
| 552 | # Streaming mode uses the file size as the buffer size. So output gets really large. Drop |
| 553 | # the ability to analyze the file and just write to /dev/null. |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 554 | run_args+=(--runtime-option -Xmethod-trace-file:/dev/null) |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 555 | # Enable streaming mode. |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 556 | run_args+=(--runtime-option -Xmethod-trace-stream) |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 557 | else |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 558 | run_args+=(--runtime-option "-Xmethod-trace-file:${DEX_LOCATION}/trace.bin") |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 559 | fi |
| 560 | elif [ "$trace_stream" = "true" ]; then |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 561 | err_echo "Cannot use --stream without --trace." |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 562 | exit 1 |
Jeff Hao | 85139a3 | 2014-07-23 11:52:52 -0700 | [diff] [blame] | 563 | fi |
Martin Stjernholm | 4815e72 | 2019-09-24 16:20:09 +0100 | [diff] [blame] | 564 | if [ -n "$timeout" ]; then |
| 565 | run_args+=(--timeout "$timeout") |
| 566 | fi |
Jeff Hao | 85139a3 | 2014-07-23 11:52:52 -0700 | [diff] [blame] | 567 | |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 568 | # Most interesting target architecture variables are Makefile variables, not environment variables. |
Nicolas Geoffray | 93d6846 | 2018-01-02 11:59:45 +0000 | [diff] [blame] | 569 | # Try to map the suffix64 flag and what we find in ${ANDROID_PRODUCT_OUT}/data/art-test to an architecture name. |
David Brazdil | 853a4c3 | 2015-09-28 16:15:50 +0100 | [diff] [blame] | 570 | function guess_target_arch_name() { |
Andreas Gampe | d0566d4 | 2018-06-06 09:54:34 -0700 | [diff] [blame] | 571 | # Check whether this is a device with native bridge. Currently this is hardcoded |
| 572 | # to x86 + arm. |
Jiakai Zhang | 76c01df | 2022-02-18 13:11:10 +0000 | [diff] [blame] | 573 | local guess_path=$chroot/system/framework/art_boot_images |
| 574 | local x86_arm=`adb shell ls ${guess_path} | sort | grep -E '^(arm|x86)$'` |
Andreas Gampe | d0566d4 | 2018-06-06 09:54:34 -0700 | [diff] [blame] | 575 | # Collapse line-breaks into spaces |
| 576 | x86_arm=$(echo $x86_arm) |
| 577 | if [ "x$x86_arm" = "xarm x86" ] ; then |
| 578 | err_echo "Native-bridge configuration detected." |
| 579 | # We only support the main arch for tests. |
| 580 | if [ "x${suffix64}" = "x64" ]; then |
| 581 | target_arch_name="" |
| 582 | else |
| 583 | target_arch_name=x86 |
| 584 | fi |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 585 | else |
Jiakai Zhang | 76c01df | 2022-02-18 13:11:10 +0000 | [diff] [blame] | 586 | local grep32bit=`adb shell ls ${guess_path} | grep -E '^(arm|x86)$'` |
| 587 | local grep64bit=`adb shell ls ${guess_path} | grep -E '^(arm64|x86_64)$'` |
Andreas Gampe | d0566d4 | 2018-06-06 09:54:34 -0700 | [diff] [blame] | 588 | if [ "x${suffix64}" = "x64" ]; then |
| 589 | target_arch_name=${grep64bit} |
| 590 | else |
| 591 | target_arch_name=${grep32bit} |
| 592 | fi |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 593 | fi |
| 594 | } |
| 595 | |
David Brazdil | 853a4c3 | 2015-09-28 16:15:50 +0100 | [diff] [blame] | 596 | function guess_host_arch_name() { |
| 597 | if [ "x${suffix64}" = "x64" ]; then |
| 598 | host_arch_name="x86_64" |
| 599 | else |
| 600 | host_arch_name="x86" |
| 601 | fi |
| 602 | } |
| 603 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 604 | if [ "$target_mode" = "no" ]; then |
| 605 | if [ "$runtime" = "jvm" ]; then |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 606 | if [ "$prebuild_mode" = "yes" ]; then |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 607 | err_echo "--prebuild with --jvm is unsupported" |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 608 | exit 1 |
| 609 | fi |
| 610 | else |
| 611 | # ART/Dalvik host mode. |
| 612 | if [ -n "$chroot" ]; then |
| 613 | err_echo "--chroot with --host is unsupported" |
| 614 | exit 1 |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 615 | fi |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 616 | fi |
| 617 | fi |
| 618 | |
Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 619 | if [ ! "$runtime" = "jvm" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 620 | run_args+=(--lib "$lib") |
Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 621 | fi |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 622 | |
Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 623 | if [ "$runtime" = "dalvik" ]; then |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 624 | if [ "$target_mode" = "no" ]; then |
Nicolas Geoffray | 93d6846 | 2018-01-02 11:59:45 +0000 | [diff] [blame] | 625 | framework="${ANDROID_PRODUCT_OUT}/system/framework" |
Victor Chang | 759845f | 2019-08-06 16:04:36 +0100 | [diff] [blame] | 626 | bpath="${framework}/core-icu4j.jar:${framework}/core-libart.jar:${framework}/core-oj.jar:${framework}/conscrypt.jar:${framework}/okhttp.jar:${framework}/bouncycastle.jar:${framework}/ext.jar" |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 627 | run_args+=(--boot --runtime-option "-Xbootclasspath:${bpath}") |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 628 | else |
| 629 | true # defaults to using target BOOTCLASSPATH |
| 630 | fi |
Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 631 | elif [ "$runtime" = "art" ]; then |
Ulya Trafimovich | 5439f05 | 2020-07-29 10:03:46 +0100 | [diff] [blame] | 632 | if [ "$target_mode" = "no" ]; then |
David Brazdil | 853a4c3 | 2015-09-28 16:15:50 +0100 | [diff] [blame] | 633 | guess_host_arch_name |
Martin Stjernholm | 9fde2db | 2020-10-15 16:03:29 +0100 | [diff] [blame] | 634 | run_args+=(--boot "${ANDROID_HOST_OUT}/apex/art_boot_images/javalib/boot.art") |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 635 | run_args+=(--runtime-option "-Djava.library.path=${host_lib_root}/lib${suffix64}:${host_lib_root}/nativetest${suffix64}") |
Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 636 | else |
David Brazdil | 853a4c3 | 2015-09-28 16:15:50 +0100 | [diff] [blame] | 637 | guess_target_arch_name |
Martin Stjernholm | 0d0f8df | 2021-04-28 16:47:01 +0100 | [diff] [blame] | 638 | # Note that libarttest(d).so and other test libraries that depend on ART |
| 639 | # internal libraries must not be in this path for JNI libraries - they |
| 640 | # need to be loaded through LD_LIBRARY_PATH and |
| 641 | # NATIVELOADER_DEFAULT_NAMESPACE_LIBS instead. |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 642 | run_args+=(--runtime-option "-Djava.library.path=/data/nativetest${suffix64}/art/${target_arch_name}") |
Jiakai Zhang | 61c0d22 | 2022-02-16 10:28:38 +0000 | [diff] [blame] | 643 | run_args+=(--boot "/system/framework/art_boot_images/boot.art") |
Jeff Hao | 201803f | 2013-11-20 18:11:39 -0800 | [diff] [blame] | 644 | fi |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 645 | if [ "$relocate" = "yes" ]; then |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 646 | run_args+=(--relocate) |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 647 | else |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 648 | run_args+=(--no-relocate) |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 649 | fi |
Andreas Gampe | 3f1dc56 | 2015-05-18 15:52:22 -0700 | [diff] [blame] | 650 | elif [ "$runtime" = "jvm" ]; then |
| 651 | # TODO: Detect whether the host is 32-bit or 64-bit. |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 652 | run_args+=(--runtime-option "-Djava.library.path=${ANDROID_HOST_OUT}/lib64:${ANDROID_HOST_OUT}/nativetest64") |
Brian Carlstrom | dc959ea | 2013-10-28 00:44:49 -0700 | [diff] [blame] | 653 | fi |
| 654 | |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 655 | if [ "$have_image" = "no" ]; then |
Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame] | 656 | if [ "$runtime" != "art" ]; then |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 657 | err_echo "--no-image is only supported on the art runtime" |
Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame] | 658 | exit 1 |
| 659 | fi |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 660 | run_args+=(--no-image) |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 661 | fi |
| 662 | |
Alex Light | 8d94ddd | 2019-12-18 11:13:03 -0800 | [diff] [blame] | 663 | if [ "$create_runner" = "yes" -a "$target_mode" = "yes" ]; then |
| 664 | err_echo "--create-runner does not function for non --host tests" |
| 665 | usage="yes" |
| 666 | fi |
| 667 | |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 668 | if [ "$dev_mode" = "yes" -a "$update_mode" = "yes" ]; then |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 669 | err_echo "--dev and --update are mutually exclusive" |
| 670 | usage="yes" |
| 671 | fi |
| 672 | |
| 673 | if [ "$dev_mode" = "yes" -a "$quiet" = "yes" ]; then |
| 674 | err_echo "--dev and --quiet are mutually exclusive" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 675 | usage="yes" |
| 676 | fi |
| 677 | |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 678 | if [ "$bisection_search" = "yes" -a "$prebuild_mode" = "yes" ]; then |
| 679 | err_echo "--bisection-search and --prebuild are mutually exclusive" |
| 680 | usage="yes" |
| 681 | fi |
| 682 | |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 683 | # TODO: Chroot-based bisection search is not supported yet (see below); implement it. |
| 684 | if [ "$bisection_search" = "yes" -a -n "$chroot" ]; then |
| 685 | err_echo "--chroot with --bisection-search is unsupported" |
| 686 | exit 1 |
| 687 | fi |
| 688 | |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 689 | if [ "$usage" = "no" ]; then |
| 690 | if [ "x$1" = "x" -o "x$1" = "x-" ]; then |
| 691 | test_dir=`basename "$oldwd"` |
| 692 | else |
| 693 | test_dir="$1" |
| 694 | fi |
| 695 | |
| 696 | if [ '!' -d "$test_dir" ]; then |
| 697 | td2=`echo ${test_dir}-*` |
| 698 | if [ '!' -d "$td2" ]; then |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 699 | err_echo "${test_dir}: no such test directory" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 700 | usage="yes" |
| 701 | fi |
| 702 | test_dir="$td2" |
| 703 | fi |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 704 | # Shift to get rid of the test name argument. The rest of the arguments |
| 705 | # will get passed to the test run. |
| 706 | shift |
| 707 | fi |
| 708 | |
| 709 | if [ "$usage" = "yes" ]; then |
| 710 | prog=`basename $prog` |
| 711 | ( |
| 712 | echo "usage:" |
| 713 | echo " $prog --help Print this message." |
| 714 | echo " $prog [options] [test-name] Run test normally." |
| 715 | echo " $prog --dev [options] [test-name] Development mode" \ |
| 716 | "(dumps to stdout)." |
Alex Light | 8d94ddd | 2019-12-18 11:13:03 -0800 | [diff] [blame] | 717 | echo " $prog --create-runner [options] [test-name]" |
| 718 | echo " Creates a runner script for use with other " \ |
| 719 | "tools (e.g. parallel_run.py)." |
| 720 | echo " The script will only run the test portion, and " \ |
| 721 | "share oat and dex files." |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 722 | echo " $prog --update [options] [test-name] Update mode" \ |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 723 | "(replaces expected-stdout.txt and expected-stderr.txt)." |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 724 | echo ' Omitting the test name or specifying "-" will use the' \ |
| 725 | "current directory." |
| 726 | echo " Runtime Options:" |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 727 | echo " -O Run non-debug rather than debug build (off by default)." |
| 728 | echo " -Xcompiler-option Pass an option to the compiler." |
| 729 | echo " --runtime-option Pass an option to the runtime." |
Mathieu Chartier | dcd56c9 | 2017-11-20 20:30:24 -0800 | [diff] [blame] | 730 | echo " --compact-dex-level Specify a compact dex level to the compiler." |
Alex Light | c281ba5 | 2017-10-11 11:35:55 -0700 | [diff] [blame] | 731 | echo " --debug Wait for the default debugger to attach." |
| 732 | echo " --debug-agent <agent-path>" |
| 733 | echo " Wait for the given debugger agent to attach. Currently" |
| 734 | echo " only supported on host." |
| 735 | echo " --debug-wrap-agent use libwrapagentproperties and tools/libjdwp-compat.props" |
| 736 | echo " to load the debugger agent specified by --debug-agent." |
Alex Light | 0e151e7 | 2017-10-25 10:50:35 -0700 | [diff] [blame] | 737 | echo " --with-agent <agent> Run the test with the given agent loaded with -agentpath:" |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 738 | echo " --debuggable Whether to compile Java code for a debugger." |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 739 | echo " --gdb Run under gdb; incompatible with some tests." |
Stelios Ioannou | 816b0da | 2021-06-03 13:25:50 +0100 | [diff] [blame] | 740 | echo " --gdb-dex2oat Run dex2oat under the prebuilt lldb." |
Alex Light | e4b4a18 | 2019-02-12 14:19:49 -0800 | [diff] [blame] | 741 | echo " --gdbserver Start gdbserver (defaults to port :5039)." |
| 742 | echo " --gdbserver-port <port>" |
| 743 | echo " Start gdbserver with the given COMM (see man gdbserver)." |
| 744 | echo " --gdbserver-bin <binary>" |
| 745 | echo " Use the given binary as gdbserver." |
| 746 | echo " --gdb-arg Pass an option to gdb or gdbserver." |
Stelios Ioannou | 816b0da | 2021-06-03 13:25:50 +0100 | [diff] [blame] | 747 | echo " --gdb-dex2oat-args Pass options separated by ';' to lldb for dex2oat." |
Ulya Trafimovich | 6806d3c | 2021-11-09 17:33:51 +0000 | [diff] [blame] | 748 | echo " --simpleperf Wraps the dalvikvm invocation in 'simpleperf record ..." |
| 749 | echo " ... simpleperf report' and dumps stats to stdout." |
David Srbecky | ca15b8d | 2021-04-23 12:25:08 +0100 | [diff] [blame] | 750 | echo " --temp-path [path] Location where to execute the tests." |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 751 | echo " --interpreter Enable interpreter only mode (off by default)." |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 752 | echo " --jit Enable jit (off by default)." |
Nicolas Geoffray | 0e07125 | 2015-03-21 13:43:15 +0000 | [diff] [blame] | 753 | echo " --optimizing Enable optimizing compiler (default)." |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 754 | echo " --no-verify Turn off verification (on by default)." |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 755 | echo " --verify-soft-fail Force soft fail verification (off by default)." |
| 756 | echo " Verification is enabled if neither --no-verify" |
| 757 | echo " nor --verify-soft-fail is specified." |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 758 | echo " --no-optimize Turn off optimization (on by default)." |
| 759 | echo " --no-precise Turn off precise GC (on by default)." |
| 760 | echo " --zygote Spawn the process from the Zygote." \ |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 761 | "If used, then the" |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 762 | echo " other runtime options are ignored." |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 763 | echo " --prebuild Run dex2oat on the files before starting test. (default)" |
| 764 | echo " --no-prebuild Do not run dex2oat on the files before starting" |
| 765 | echo " the test." |
Richard Uhler | 76f5cb6 | 2016-04-04 13:30:16 -0700 | [diff] [blame] | 766 | echo " --strip-dex Strip the dex files before starting test." |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 767 | echo " --relocate Force the use of relocating in the test, making" |
| 768 | echo " the image and oat files be relocated to a random" |
Nicolas Geoffray | 94e25db | 2017-01-27 14:54:28 +0000 | [diff] [blame] | 769 | echo " address before running." |
| 770 | echo " --no-relocate Force the use of no relocating in the test. (default)" |
Alex Light | fadfee9 | 2015-10-28 09:40:10 -0700 | [diff] [blame] | 771 | echo " --image Run the test using a precompiled boot image. (default)" |
| 772 | echo " --no-image Run the test without a precompiled boot image." |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 773 | echo " --host Use the host-mode virtual machine." |
| 774 | echo " --invoke-with Pass --invoke-with option to runtime." |
| 775 | echo " --dalvik Use Dalvik (off by default)." |
| 776 | echo " --jvm Use a host-local RI virtual machine." |
Alex Light | eb7c144 | 2015-08-31 13:17:42 -0700 | [diff] [blame] | 777 | echo " --use-java-home Use the JAVA_HOME environment variable" |
| 778 | echo " to find the java compiler and runtime" |
| 779 | echo " (if applicable) to run the test with." |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 780 | echo " --64 Run the test in 64-bit mode" |
Alex Light | 680cbf2 | 2018-10-31 11:00:19 -0700 | [diff] [blame] | 781 | echo " --bionic Use the (host, 64-bit only) linux_bionic libc runtime" |
Alex Light | 20802ca | 2018-12-05 15:36:03 -0800 | [diff] [blame] | 782 | echo " --runtime-zipapex [file]" |
| 783 | echo " Use the given zipapex file to provide runtime binaries" |
Alex Light | 6f342dd | 2019-03-27 17:15:42 +0000 | [diff] [blame] | 784 | echo " --runtime-extracted-zipapex [dir]" |
| 785 | echo " Use the given extracted zipapex directory to provide" |
| 786 | echo " runtime binaries" |
Martin Stjernholm | 4815e72 | 2019-09-24 16:20:09 +0100 | [diff] [blame] | 787 | echo " --timeout n Test timeout in seconds" |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 788 | echo " --trace Run with method tracing" |
Alex Light | fadfee9 | 2015-10-28 09:40:10 -0700 | [diff] [blame] | 789 | echo " --strace Run with syscall tracing from strace." |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 790 | echo " --stream Run method tracing in streaming mode (requires --trace)" |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 791 | echo " --gcstress Run with gc stress testing" |
| 792 | echo " --gcverify Run with gc verification" |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 793 | echo " --jvmti-trace-stress Run with jvmti method tracing stress testing" |
Alex Light | c38c369 | 2017-06-27 15:45:14 -0700 | [diff] [blame] | 794 | echo " --jvmti-step-stress Run with jvmti single step stress testing" |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 795 | echo " --jvmti-redefine-stress" |
| 796 | echo " Run with jvmti method redefinition stress testing" |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 797 | echo " --always-clean Delete the test files even if the test fails." |
Igor Murashkin | 05f30e1 | 2015-06-10 15:57:17 -0700 | [diff] [blame] | 798 | echo " --never-clean Keep the test files even if the test succeeds." |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 799 | echo " --chroot [newroot] Run with root directory set to newroot." |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 800 | echo " --android-root [path] The path on target for the android root. (/system by default)." |
Victor Chang | 6461124 | 2019-07-05 16:32:41 +0100 | [diff] [blame] | 801 | echo " --android-i18n-root [path]" |
| 802 | echo " The path on target for the i18n module root." |
| 803 | echo " (/apex/com.android.i18n by default)." |
Martin Stjernholm | e58624f | 2019-09-20 15:53:40 +0100 | [diff] [blame] | 804 | echo " --android-art-root [path]" |
| 805 | echo " The path on target for the ART module root." |
Martin Stjernholm | d6be5da | 2019-07-16 17:14:46 +0100 | [diff] [blame] | 806 | echo " (/apex/com.android.art by default)." |
Roland Levillain | 90b3457 | 2019-06-14 15:23:15 +0100 | [diff] [blame] | 807 | echo " --android-tzdata-root [path]" |
| 808 | echo " The path on target for the Android Time Zone Data root." |
| 809 | echo " (/apex/com.android.tzdata by default)." |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 810 | echo " --dex2oat-swap Use a dex2oat swap file." |
Andreas Gampe | 4d2ef33 | 2015-08-05 09:24:45 -0700 | [diff] [blame] | 811 | echo " --instruction-set-features [string]" |
| 812 | echo " Set instruction-set-features for compilation." |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 813 | echo " --quiet Don't print anything except failure messages" |
Orion Hodson | 9ca92fb | 2020-10-28 15:08:11 +0000 | [diff] [blame] | 814 | echo " --external-log-tags Use ANDROID_LOG_TAGS to set a custom logging level for" |
| 815 | echo " a test run." |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 816 | echo " --bisection-search Perform bisection bug search." |
Nicolas Geoffray | b0bbe8e | 2016-11-19 10:42:37 +0000 | [diff] [blame] | 817 | echo " --vdex Test using vdex as in input to dex2oat. Only works with --prebuild." |
Mathieu Chartier | 3fceaf5 | 2017-01-22 13:33:40 -0800 | [diff] [blame] | 818 | echo " --suspend-timeout Change thread suspend timeout ms (default 500000)." |
Shubham Ajmera | 981d99c | 2017-08-17 14:11:08 -0700 | [diff] [blame] | 819 | echo " --dex2oat-jobs Number of dex2oat jobs." |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 820 | ) 1>&2 # Direct to stderr so usage is not printed if --quiet is set. |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 821 | exit 1 |
| 822 | fi |
| 823 | |
| 824 | cd "$test_dir" |
| 825 | test_dir=`pwd` |
| 826 | |
| 827 | td_info="${test_dir}/${info}" |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 828 | td_expected_stdout="${test_dir}/${expected_stdout}" |
| 829 | td_expected_stderr="${test_dir}/${expected_stderr}" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 830 | |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 831 | for td_file in "$td_info" "$td_expected_stdout" "$td_expected_stderr"; do |
| 832 | if [ ! -r "$td_file" ]; then |
| 833 | err_echo "${test_dir}: missing file $td_file" |
| 834 | exit 1 |
| 835 | fi |
| 836 | done |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 837 | |
Elliott Hughes | 8cbc8bc | 2011-10-04 11:19:45 -0700 | [diff] [blame] | 838 | export TEST_NAME=`basename ${test_dir}` |
| 839 | |
Nicolas Geoffray | 1949baf | 2017-10-17 12:14:53 +0000 | [diff] [blame] | 840 | # Tests named '<number>-checker-*' will also have their CFGs verified with |
| 841 | # Checker when compiled with Optimizing on host. |
Stelios Ioannou | 1b62122 | 2021-06-17 14:15:45 +0100 | [diff] [blame] | 842 | # Additionally, if the user specifies that the CFG must be dumped, it will |
| 843 | # run the checker for any type of test to generate the CFG. |
| 844 | if [[ "$TEST_NAME" =~ ^[0-9]+-checker- ]] || [ "$dump_cfg" = "true" ]; then |
Nicolas Geoffray | 8c41a0b | 2020-02-06 16:52:11 +0000 | [diff] [blame] | 845 | if [ "$runtime" = "art" -a "$run_optimizing" = "true" ]; then |
Nicolas Geoffray | 1949baf | 2017-10-17 12:14:53 +0000 | [diff] [blame] | 846 | # In no-prebuild or no-image mode, the compiler only quickens so disable the checker. |
Nicolas Geoffray | 48eb839 | 2022-02-24 16:20:18 +0000 | [diff] [blame] | 847 | if [ "$prebuild_mode" = "yes" ]; then |
Nicolas Geoffray | 1949baf | 2017-10-17 12:14:53 +0000 | [diff] [blame] | 848 | run_checker="yes" |
| 849 | |
Ulya Trafimovich | 5439f05 | 2020-07-29 10:03:46 +0100 | [diff] [blame] | 850 | if [ "$target_mode" = "no" ]; then |
Nicolas Geoffray | 1949baf | 2017-10-17 12:14:53 +0000 | [diff] [blame] | 851 | cfg_output_dir="$tmp_dir" |
| 852 | checker_args="--arch=${host_arch_name^^}" |
| 853 | else |
| 854 | cfg_output_dir="$DEX_LOCATION" |
| 855 | checker_args="--arch=${target_arch_name^^}" |
| 856 | fi |
| 857 | |
| 858 | if [ "$debuggable" = "yes" ]; then |
| 859 | checker_args="$checker_args --debuggable" |
| 860 | fi |
| 861 | |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 862 | run_args+=(-Xcompiler-option "--dump-cfg=$cfg_output_dir/$cfg_output" -Xcompiler-option -j1) |
Daniil Riazanovskiy | bfe8fc8 | 2020-10-05 15:07:15 +0000 | [diff] [blame] | 863 | checker_args="$checker_args --print-cfg" |
Nicolas Geoffray | 1949baf | 2017-10-17 12:14:53 +0000 | [diff] [blame] | 864 | fi |
| 865 | fi |
| 866 | fi |
| 867 | |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 868 | run_args+=(--testlib "${testlib}") |
Mathieu Chartier | 031768a | 2015-08-27 10:25:02 -0700 | [diff] [blame] | 869 | |
Alex Light | 20802ca | 2018-12-05 15:36:03 -0800 | [diff] [blame] | 870 | if ! ulimit -f ${file_ulimit}; then |
Richard Uhler | 020c0f3 | 2017-03-14 16:23:17 +0000 | [diff] [blame] | 871 | err_echo "ulimit file size setting failed" |
Ian Rogers | 997f0f9 | 2014-06-21 22:58:05 -0700 | [diff] [blame] | 872 | fi |
| 873 | |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 874 | # Extract run-test data from the zip file. |
David Srbecky | ca15b8d | 2021-04-23 12:25:08 +0100 | [diff] [blame] | 875 | rm -rf "$tmp_dir" |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 876 | mkdir -p "$tmp_dir/.unzipped" |
David Srbecky | ca15b8d | 2021-04-23 12:25:08 +0100 | [diff] [blame] | 877 | cd "$tmp_dir" |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 878 | if [[ "$target_mode" == "yes" ]]; then |
| 879 | zip_file="${ANDROID_HOST_OUT}/etc/art/art-run-test-target-data.zip" |
| 880 | zip_entry="target/${TEST_NAME}" |
| 881 | elif [[ $runtime == "jvm" ]]; then |
| 882 | zip_file="${ANDROID_HOST_OUT}/etc/art/art-run-test-jvm-data.zip" |
| 883 | zip_entry="jvm/${TEST_NAME}" |
| 884 | else |
| 885 | zip_file="${ANDROID_HOST_OUT}/etc/art/art-run-test-host-data.zip" |
| 886 | zip_entry="host/${TEST_NAME}" |
| 887 | fi |
| 888 | unzip -q "${zip_file}" "${zip_entry}/*" -d "$tmp_dir/.unzipped" |
| 889 | mv "$tmp_dir"/.unzipped/${zip_entry}/* "$tmp_dir" |
David Srbecky | ca15b8d | 2021-04-23 12:25:08 +0100 | [diff] [blame] | 890 | |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 891 | good="no" |
Nicolas Geoffray | 1ed097d | 2014-11-13 15:15:39 +0000 | [diff] [blame] | 892 | good_run="yes" |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 893 | export TEST_RUNTIME="${runtime}" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 894 | if [ "$dev_mode" = "yes" ]; then |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 895 | echo "${test_dir}: running..." 1>&2 |
| 896 | "./${run}" "${run_args[@]}" "$@" |
| 897 | run_exit="$?" |
Calin Juravle | 3cf4877 | 2015-01-26 16:47:33 +0000 | [diff] [blame] | 898 | |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 899 | if [ "$run_exit" = "0" ]; then |
David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 900 | if [ "$run_checker" = "yes" ]; then |
Alexandre Rames | 5e2c8d3 | 2015-08-06 14:49:28 +0100 | [diff] [blame] | 901 | if [ "$target_mode" = "yes" ]; then |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 902 | adb pull "$chroot/$cfg_output_dir/$cfg_output" &> /dev/null |
Alexandre Rames | 5e2c8d3 | 2015-08-06 14:49:28 +0100 | [diff] [blame] | 903 | fi |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 904 | "$checker" $checker_args "$cfg_output" "$tmp_dir" 2>&1 |
David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 905 | checker_exit="$?" |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 906 | if [ "$checker_exit" = "0" ]; then |
| 907 | good="yes" |
David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 908 | fi |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 909 | err_echo "checker exit status: $checker_exit" |
| 910 | else |
| 911 | good="yes" |
| 912 | fi |
| 913 | fi |
| 914 | echo "run exit status: $run_exit" 1>&2 |
| 915 | elif [ "$update_mode" = "yes" ]; then |
| 916 | echo "${test_dir}: running..." 1>&2 |
| 917 | "./${run}" "${run_args[@]}" "$@" >"$test_stdout" 2>"$test_stderr" |
| 918 | if [ "$run_checker" = "yes" ]; then |
| 919 | if [ "$target_mode" = "yes" ]; then |
| 920 | adb pull "$chroot/$cfg_output_dir/$cfg_output" &> /dev/null |
| 921 | fi |
| 922 | "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >>"$test_stdout" 2>>"$test_stderr" |
| 923 | fi |
| 924 | sed -e 's/[[:cntrl:]]$//g' <"$test_stdout" >"${td_expected_stdout}" |
| 925 | sed -e 's/[[:cntrl:]]$//g' <"$test_stderr" >"${td_expected_stderr}" |
| 926 | good="yes" |
| 927 | else |
| 928 | echo "${test_dir}: running..." 1>&2 |
| 929 | "./${run}" "${run_args[@]}" "$@" >"$test_stdout" 2>"$test_stderr" |
| 930 | run_exit="$?" |
| 931 | if [ "$run_exit" != "0" ]; then |
| 932 | err_echo "run exit status: $run_exit" |
| 933 | good_run="no" |
| 934 | elif [ "$run_checker" = "yes" ]; then |
| 935 | if [ "$target_mode" = "yes" ]; then |
| 936 | adb pull "$chroot/$cfg_output_dir/$cfg_output" &> /dev/null |
| 937 | fi |
| 938 | "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >>"$test_stdout" 2>>"$test_stderr" |
| 939 | checker_exit="$?" |
| 940 | if [ "$checker_exit" != "0" ]; then |
| 941 | err_echo "checker exit status: $checker_exit" |
| 942 | good_run="no" |
Nicolas Geoffray | 1ed097d | 2014-11-13 15:15:39 +0000 | [diff] [blame] | 943 | else |
| 944 | good_run="yes" |
| 945 | fi |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 946 | else |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 947 | good_run="yes" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 948 | fi |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 949 | ./$check_cmd "$expected_stdout" "$test_stdout" "$expected_stderr" "$test_stderr" |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 950 | if [ "$?" = "0" ]; then |
David Srbecky | 7cf6c58 | 2021-07-20 16:56:06 +0100 | [diff] [blame] | 951 | if [ "$good_run" = "yes" ]; then |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 952 | # test_stdout == expected_stdout && test_stderr == expected_stderr |
Nicolas Geoffray | 1ed097d | 2014-11-13 15:15:39 +0000 | [diff] [blame] | 953 | good="yes" |
| 954 | echo "${test_dir}: succeeded!" 1>&2 |
| 955 | fi |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 956 | fi |
| 957 | fi |
| 958 | |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 959 | ( |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 960 | if [ "$good" != "yes" -a "$update_mode" != "yes" ]; then |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 961 | echo "${test_dir}: FAILED!" |
| 962 | echo ' ' |
| 963 | echo '#################### info' |
| 964 | cat "${td_info}" | sed 's/^/# /g' |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 965 | echo '#################### stdout diffs' |
Nicolas Geoffray | 30a11eb | 2020-01-28 16:04:01 +0000 | [diff] [blame] | 966 | if [ "$run_checker" == "yes" ]; then |
| 967 | # Checker failures dump the whole CFG, so we output the whole diff. |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 968 | diff --strip-trailing-cr -u "$expected_stdout" "$test_stdout" |
Nicolas Geoffray | 30a11eb | 2020-01-28 16:04:01 +0000 | [diff] [blame] | 969 | else |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 970 | diff --strip-trailing-cr -u "$expected_stdout" "$test_stdout" | tail -n 10000 |
Nicolas Geoffray | 30a11eb | 2020-01-28 16:04:01 +0000 | [diff] [blame] | 971 | fi |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 972 | echo '####################' |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 973 | echo '#################### stderr diffs' |
| 974 | diff --strip-trailing-cr -u "$expected_stderr" "$test_stderr" | tail -n 10000 |
| 975 | echo '####################' |
Hiroshi Yamauchi | 1d4184d | 2015-07-13 17:11:22 -0700 | [diff] [blame] | 976 | if [ "$strace" = "yes" ]; then |
| 977 | echo '#################### strace output' |
Hiroshi Yamauchi | d630fd6 | 2015-09-04 12:52:03 -0700 | [diff] [blame] | 978 | tail -n 3000 "$tmp_dir/$strace_output" |
Hiroshi Yamauchi | 1d4184d | 2015-07-13 17:11:22 -0700 | [diff] [blame] | 979 | echo '####################' |
| 980 | fi |
Andreas Gampe | e79ca19 | 2017-07-31 10:30:16 -0700 | [diff] [blame] | 981 | if [ "x$target_mode" = "xno" -a "x$SANITIZE_HOST" = "xaddress" ]; then |
| 982 | # Run the stack script to symbolize any ASAN aborts on the host for SANITIZE_HOST. The |
| 983 | # tools used by the given ABI work for both x86 and x86-64. |
Roland Levillain | b15e879 | 2020-10-28 12:20:59 +0000 | [diff] [blame] | 984 | echo "ABI: 'x86_64'" | cat - "$test_stdout" "$test_stderr" \ |
| 985 | | $ANDROID_BUILD_TOP/development/scripts/stack | tail -n 3000 |
Andreas Gampe | e79ca19 | 2017-07-31 10:30:16 -0700 | [diff] [blame] | 986 | fi |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 987 | echo ' ' |
| 988 | fi |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 989 | |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 990 | ) 2>&${real_stderr} 1>&2 |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 991 | |
Stelios Ioannou | 1b62122 | 2021-06-17 14:15:45 +0100 | [diff] [blame] | 992 | # Copy the generated CFG to the specified path. |
| 993 | if [ $dump_cfg = "true" ]; then |
| 994 | if [ $run_optimizing != "true" ]; then |
| 995 | err_echo "Can't dump the .cfg if the compiler type isn't set to \"optimizing\"." |
| 996 | else |
| 997 | if [ "$target_mode" = "yes" ]; then |
| 998 | adb pull $chroot/$cfg_output_dir/$cfg_output $dump_cfg_path |
| 999 | else |
| 1000 | cp $cfg_output_dir/$cfg_output $dump_cfg_path |
| 1001 | fi |
| 1002 | fi |
| 1003 | fi |
| 1004 | |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 1005 | # Attempt bisection only if the test failed. |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 1006 | # TODO: Implement support for chroot-based bisection search. |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 1007 | if [ "$bisection_search" = "yes" -a "$good" != "yes" ]; then |
| 1008 | # Bisecting works by skipping different optimization passes which breaks checker assertions. |
| 1009 | if [ "$run_checker" == "yes" ]; then |
| 1010 | echo "${test_dir}: not bisecting, checker test." 1>&2 |
| 1011 | else |
| 1012 | # Increase file size limit, bisection search can generate large logfiles. |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 1013 | echo "${test_dir}: bisecting..." 1>&2 |
| 1014 | cwd=`pwd` |
| 1015 | maybe_device_mode="" |
| 1016 | raw_cmd="" |
| 1017 | if [ "$target_mode" = "yes" ]; then |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 1018 | # Produce cmdline.sh in $chroot_dex_location. "$@" is passed as a runtime option |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 1019 | # so that cmdline.sh forwards its arguments to dalvikvm. invoke-with is set |
| 1020 | # to exec in order to preserve pid when calling dalvikvm. This is required |
| 1021 | # for bisection search to correctly retrieve logs from device. |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 1022 | "./${run}" "${run_args[@]}" --runtime-option '"$@"' --invoke-with exec --dry-run "$@" &> /dev/null |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 1023 | adb shell chmod u+x "$chroot_dex_location/cmdline.sh" |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 1024 | maybe_device_mode="--device" |
| 1025 | raw_cmd="$DEX_LOCATION/cmdline.sh" |
| 1026 | else |
Andreas Gampe | 11410de | 2019-07-02 15:53:53 -0700 | [diff] [blame] | 1027 | raw_cmd="$cwd/${run} --external-log-tags "${run_args[@]}" $@" |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 1028 | fi |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 1029 | # TODO: Pass a `--chroot` option to the bisection_search.py script and use it there. |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 1030 | $ANDROID_BUILD_TOP/art/tools/bisection_search/bisection_search.py \ |
| 1031 | $maybe_device_mode \ |
| 1032 | --raw-cmd="$raw_cmd" \ |
| 1033 | --check-script="$cwd/check" \ |
Roland Levillain | a073f46 | 2020-10-28 12:48:24 +0000 | [diff] [blame] | 1034 | --expected-output="$cwd/expected-stdout.txt" \ |
Wojciech Staszkiewicz | 0c88383 | 2016-09-26 17:51:52 -0700 | [diff] [blame] | 1035 | --logfile="$cwd/bisection_log.txt" \ |
Martin Stjernholm | 4815e72 | 2019-09-24 16:20:09 +0100 | [diff] [blame] | 1036 | --timeout=${timeout:-300} |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 1037 | fi |
| 1038 | fi |
| 1039 | |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 1040 | # Clean up test files. |
Igor Murashkin | 05f30e1 | 2015-06-10 15:57:17 -0700 | [diff] [blame] | 1041 | if [ "$always_clean" = "yes" -o "$good" = "yes" ] && [ "$never_clean" = "no" ]; then |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 1042 | cd "$oldwd" |
| 1043 | rm -rf "$tmp_dir" |
| 1044 | if [ "$target_mode" = "yes" -a "$build_exit" = "0" ]; then |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 1045 | adb shell rm -rf $chroot_dex_location |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 1046 | fi |
| 1047 | if [ "$good" = "yes" ]; then |
| 1048 | exit 0 |
| 1049 | fi |
| 1050 | fi |
| 1051 | |
| 1052 | |
| 1053 | ( |
| 1054 | if [ "$always_clean" = "yes" ]; then |
| 1055 | echo "${TEST_NAME} files deleted from host " |
| 1056 | if [ "$target_mode" == "yes" ]; then |
| 1057 | echo "and from target" |
| 1058 | fi |
| 1059 | else |
| 1060 | echo "${TEST_NAME} files left in ${tmp_dir} on host" |
| 1061 | if [ "$target_mode" == "yes" ]; then |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 1062 | echo "and in ${chroot_dex_location} on target" |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 1063 | fi |
Brian Carlstrom | 105215d | 2012-06-14 12:50:44 -0700 | [diff] [blame] | 1064 | fi |
| 1065 | |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 1066 | ) 2>&${real_stderr} 1>&2 |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 1067 | |
Alex Light | 6a870fa | 2016-05-31 16:36:19 -0700 | [diff] [blame] | 1068 | if [ "$never_clean" = "yes" ] && [ "$good" = "yes" ]; then |
| 1069 | exit 0 |
| 1070 | else |
| 1071 | exit 1 |
| 1072 | fi |