Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright (C) 2015 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 | if [ ! -d libcore ]; then |
| 18 | echo "Script needs to be run at the root of the android tree" |
| 19 | exit 1 |
| 20 | fi |
| 21 | |
Colin Cross | e0ef0a8 | 2017-07-27 21:29:18 +0000 | [diff] [blame] | 22 | source build/envsetup.sh >&/dev/null # for get_build_var, setpaths |
| 23 | setpaths # include platform prebuilt java, javac, etc in $PATH. |
Shubham Ajmera | c33c087 | 2017-07-20 18:41:52 -0700 | [diff] [blame] | 24 | |
Andreas Gampe | ebd089d | 2016-07-18 14:56:56 -0700 | [diff] [blame] | 25 | if [ -z "$ANDROID_HOST_OUT" ] ; then |
| 26 | ANDROID_HOST_OUT=${OUT_DIR-$ANDROID_BUILD_TOP/out}/host/linux-x86 |
| 27 | fi |
| 28 | |
Colin Cross | e0ef0a8 | 2017-07-27 21:29:18 +0000 | [diff] [blame] | 29 | using_jack=$(get_build_var ANDROID_COMPILE_WITH_JACK) |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 30 | |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 31 | java_lib_location="${ANDROID_HOST_OUT}/../common/obj/JAVA_LIBRARIES" |
| 32 | make_target_name="apache-harmony-jdwp-tests-hostdex" |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 33 | |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 34 | vm_args="" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 35 | art="/data/local/tmp/system/bin/art" |
Nicolas Geoffray | 33e1f8f | 2015-04-24 14:37:29 +0100 | [diff] [blame] | 36 | art_debugee="sh /data/local/tmp/system/bin/art" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 37 | args=$@ |
Nicolas Geoffray | d553b43 | 2015-07-13 14:35:17 +0100 | [diff] [blame] | 38 | debuggee_args="-Xcompiler-option --debuggable" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 39 | device_dir="--device-dir=/data/local/tmp" |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 40 | # We use the art script on target to ensure the runner and the debuggee share the same |
| 41 | # image. |
| 42 | vm_command="--vm-command=$art" |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 43 | image_compiler_option="" |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 44 | plugin="" |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 45 | debug="no" |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 46 | explicit_debug="no" |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 47 | verbose="no" |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 48 | image="-Ximage:/data/art-test/core.art" |
Alex Light | 0ac2e5c | 2017-09-19 15:35:20 -0700 | [diff] [blame] | 49 | with_jdwp_path="" |
| 50 | agent_wrapper="" |
Nicolas Geoffray | 9518655 | 2015-10-28 13:06:21 +0000 | [diff] [blame] | 51 | vm_args="" |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 52 | # By default, we run the whole JDWP test suite. |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 53 | has_specific_test="no" |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 54 | test="org.apache.harmony.jpda.tests.share.AllTests" |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 55 | mode="target" |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 56 | # Use JIT compiling by default. |
| 57 | use_jit=true |
Andreas Gampe | 85b286b | 2015-12-30 19:37:48 -0800 | [diff] [blame] | 58 | variant_cmdline_parameter="--variant=X32" |
Sebastien Hertz | c3b208c | 2017-03-27 11:35:54 +0200 | [diff] [blame] | 59 | # Timeout of JDWP test in ms. |
| 60 | # |
| 61 | # Note: some tests expect a timeout to check that *no* reply/event is received for a specific case. |
| 62 | # A lower timeout can save up several minutes when running the whole test suite, especially for |
| 63 | # continuous testing. This value can be adjusted to fit the configuration of the host machine(s). |
| 64 | jdwp_test_timeout=10000 |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 65 | |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 66 | gdb_target= |
| 67 | has_gdb="no" |
| 68 | |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 69 | while true; do |
| 70 | if [[ "$1" == "--mode=host" ]]; then |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 71 | mode="host" |
Nicolas Geoffray | 5978690 | 2015-03-30 16:34:16 +0100 | [diff] [blame] | 72 | # Specify bash explicitly since the art script cannot, since it has to run on the device |
| 73 | # with mksh. |
Alex Light | b15fea2 | 2015-09-17 16:59:09 -0700 | [diff] [blame] | 74 | art="bash ${OUT_DIR-out}/host/linux-x86/bin/art" |
| 75 | art_debugee="bash ${OUT_DIR-out}/host/linux-x86/bin/art" |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 76 | # We force generation of a new image to avoid build-time and run-time classpath differences. |
| 77 | image="-Ximage:/system/non/existent/vogar.art" |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 78 | # We do not need a device directory on host. |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 79 | device_dir="" |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 80 | # Vogar knows which VM to use on host. |
| 81 | vm_command="" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 82 | shift |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 83 | elif [[ "$1" == "--mode=jvm" ]]; then |
| 84 | mode="ri" |
| 85 | make_target_name="apache-harmony-jdwp-tests-host" |
| 86 | art="$(which java)" |
| 87 | art_debugee="$(which java)" |
| 88 | # No need for extra args. |
| 89 | debuggee_args="" |
| 90 | # No image. On the RI. |
| 91 | image="" |
| 92 | # We do not need a device directory on RI. |
| 93 | device_dir="" |
| 94 | # Vogar knows which VM to use on RI. |
| 95 | vm_command="" |
| 96 | # We don't care about jit with the RI |
| 97 | use_jit=false |
| 98 | shift |
Alex Light | 0ac2e5c | 2017-09-19 15:35:20 -0700 | [diff] [blame] | 99 | elif [[ $1 == --agent-wrapper ]]; then |
| 100 | # Remove the --agent-wrapper from the arguments. |
| 101 | args=${args/$1} |
| 102 | shift |
| 103 | agent_wrapper=${agent_wrapper}${1}, |
| 104 | # Remove the argument |
| 105 | args=${args/$1} |
| 106 | shift |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 107 | elif [[ $1 == -Ximage:* ]]; then |
| 108 | image="$1" |
| 109 | shift |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 110 | elif [[ "$1" == "--no-jit" ]]; then |
| 111 | use_jit=false |
| 112 | # Remove the --no-jit from the arguments. |
| 113 | args=${args/$1} |
| 114 | shift |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 115 | elif [[ $1 == "--no-debug" ]]; then |
| 116 | explicit_debug="yes" |
| 117 | debug="no" |
| 118 | # Remove the --no-debug from the arguments. |
| 119 | args=${args/$1} |
| 120 | shift |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 121 | elif [[ $1 == "--debug" ]]; then |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 122 | explicit_debug="yes" |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 123 | debug="yes" |
| 124 | # Remove the --debug from the arguments. |
| 125 | args=${args/$1} |
| 126 | shift |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 127 | elif [[ $1 == "--verbose" ]]; then |
| 128 | verbose="yes" |
| 129 | # Remove the --verbose from the arguments. |
| 130 | args=${args/$1} |
| 131 | shift |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 132 | elif [[ $1 == "--gdbserver" ]]; then |
| 133 | # Remove the --gdbserver from the arguments. |
| 134 | args=${args/$1} |
| 135 | has_gdb="yes" |
| 136 | shift |
| 137 | gdb_target=$1 |
| 138 | # Remove the target from the arguments. |
| 139 | args=${args/$1} |
| 140 | shift |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 141 | elif [[ $1 == "--test" ]]; then |
| 142 | # Remove the --test from the arguments. |
| 143 | args=${args/$1} |
| 144 | shift |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 145 | has_specific_test="yes" |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 146 | test=$1 |
| 147 | # Remove the test from the arguments. |
| 148 | args=${args/$1} |
| 149 | shift |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 150 | elif [[ "$1" == "--jdwp-path" ]]; then |
| 151 | # Remove the --jdwp-path from the arguments. |
| 152 | args=${args/$1} |
| 153 | shift |
Alex Light | 0ac2e5c | 2017-09-19 15:35:20 -0700 | [diff] [blame] | 154 | with_jdwp_path=$1 |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 155 | # Remove the path from the arguments. |
| 156 | args=${args/$1} |
| 157 | shift |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 158 | elif [[ "$1" == "" ]]; then |
| 159 | break |
Andreas Gampe | 85b286b | 2015-12-30 19:37:48 -0800 | [diff] [blame] | 160 | elif [[ $1 == --variant=* ]]; then |
| 161 | variant_cmdline_parameter=$1 |
| 162 | shift |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 163 | elif [[ $1 == -Xplugin:* ]]; then |
| 164 | plugin="$1" |
| 165 | args=${args/$1} |
| 166 | shift |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 167 | else |
| 168 | shift |
| 169 | fi |
| 170 | done |
| 171 | |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 172 | if [[ $has_gdb = "yes" ]]; then |
| 173 | if [[ $explicit_debug = "no" ]]; then |
| 174 | debug="yes" |
| 175 | fi |
| 176 | fi |
| 177 | |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 178 | if [[ $mode == "ri" ]]; then |
| 179 | using_jack="false" |
Alex Light | 0ac2e5c | 2017-09-19 15:35:20 -0700 | [diff] [blame] | 180 | if [[ "x$with_jdwp_path" != "x" ]]; then |
| 181 | vm_args="${vm_args} --vm-arg -Djpda.settings.debuggeeAgentArgument=-agentpath:${agent_wrapper}" |
| 182 | vm_args="${vm_args} --vm-arg -Djpda.settings.debuggeeAgentName=$with_jdwp_path" |
| 183 | fi |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 184 | if [[ "x$image" != "x" ]]; then |
| 185 | echo "Cannot use -Ximage: with --mode=jvm" |
| 186 | exit 1 |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 187 | elif [[ $has_gdb = "yes" ]]; then |
| 188 | echo "Cannot use --gdbserver with --mode=jvm" |
| 189 | exit 1 |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 190 | elif [[ $debug == "yes" ]]; then |
| 191 | echo "Cannot use --debug with --mode=jvm" |
| 192 | exit 1 |
| 193 | fi |
| 194 | else |
Alex Light | 84b92e0 | 2017-09-29 13:46:14 -0700 | [diff] [blame] | 195 | if [[ $has_gdb = "yes" ]]; then |
| 196 | if [[ $mode == "target" ]]; then |
| 197 | echo "Cannot use --gdbserver with --mode=target" |
| 198 | exit 1 |
| 199 | else |
| 200 | art_debugee="$art_debugee --gdbserver $gdb_target" |
| 201 | # The tests absolutely require some timeout. We set a ~2 week timeout since we can kill the |
| 202 | # test with gdb if it goes on too long. |
| 203 | jdwp_test_timeout="1000000000" |
| 204 | fi |
| 205 | fi |
Alex Light | 0ac2e5c | 2017-09-19 15:35:20 -0700 | [diff] [blame] | 206 | if [[ "x$with_jdwp_path" != "x" ]]; then |
| 207 | vm_args="${vm_args} --vm-arg -Djpda.settings.debuggeeAgentArgument=-agentpath:${agent_wrapper}" |
| 208 | vm_args="${vm_args} --vm-arg -Djpda.settings.debuggeeAgentName=${with_jdwp_path}" |
| 209 | fi |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 210 | vm_args="$vm_args --vm-arg -Xcompiler-option --vm-arg --debuggable" |
| 211 | # Make sure the debuggee doesn't clean up what the debugger has generated. |
| 212 | art_debugee="$art_debugee --no-clean" |
| 213 | fi |
| 214 | |
| 215 | function jlib_name { |
| 216 | local path=$1 |
| 217 | local str="classes" |
| 218 | local suffix="jar" |
| 219 | if [[ $mode == "ri" ]]; then |
| 220 | suffix="jar" |
| 221 | str="javalib" |
| 222 | elif [[ $using_jack == "true" ]]; then |
| 223 | suffix="jack" |
| 224 | fi |
| 225 | echo "$path/$str.$suffix" |
| 226 | } |
| 227 | |
| 228 | # Jar containing all the tests. |
| 229 | test_jar=$(jlib_name "${java_lib_location}/${make_target_name}_intermediates") |
| 230 | |
| 231 | if [[ ! -f $test_jar ]]; then |
| 232 | echo "Before running, you must build jdwp tests and vogar:" \ |
| 233 | "make ${make_target_name} vogar" |
| 234 | exit 1 |
| 235 | fi |
Nicolas Geoffray | c0c0785 | 2017-08-08 09:44:15 +0100 | [diff] [blame] | 236 | |
Andreas Gampe | 85b286b | 2015-12-30 19:37:48 -0800 | [diff] [blame] | 237 | # For the host: |
| 238 | # |
| 239 | # If, on the other hand, there is a variant set, use it to modify the art_debugee parameter to |
| 240 | # force the fork to have the same bitness as the controller. This should be fine and not impact |
| 241 | # testing (cross-bitness), as the protocol is always 64-bit anyways (our implementation). |
| 242 | # |
| 243 | # Note: this isn't necessary for the device as the BOOTCLASSPATH environment variable is set there |
| 244 | # and used as a fallback. |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 245 | if [[ $mode == "host" ]]; then |
Andreas Gampe | 85b286b | 2015-12-30 19:37:48 -0800 | [diff] [blame] | 246 | variant=${variant_cmdline_parameter:10} |
| 247 | if [[ $variant == "x32" || $variant == "X32" ]]; then |
| 248 | art_debugee="$art_debugee --32" |
| 249 | elif [[ $variant == "x64" || $variant == "X64" ]]; then |
| 250 | art_debugee="$art_debugee --64" |
| 251 | else |
| 252 | echo "Error, do not understand variant $variant_cmdline_parameter." |
| 253 | exit 1 |
| 254 | fi |
| 255 | fi |
| 256 | |
Nicolas Geoffray | 9518655 | 2015-10-28 13:06:21 +0000 | [diff] [blame] | 257 | if [[ "$image" != "" ]]; then |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 258 | vm_args="$vm_args --vm-arg $image" |
Nicolas Geoffray | 9518655 | 2015-10-28 13:06:21 +0000 | [diff] [blame] | 259 | fi |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 260 | |
| 261 | if [[ "$plugin" != "" ]]; then |
| 262 | vm_args="$vm_args --vm-arg $plugin" |
| 263 | fi |
| 264 | |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 265 | if $use_jit; then |
Nicolas Geoffray | 49cda06 | 2017-04-21 13:08:25 +0100 | [diff] [blame] | 266 | vm_args="$vm_args --vm-arg -Xcompiler-option --vm-arg --compiler-filter=quicken" |
| 267 | debuggee_args="$debuggee_args -Xcompiler-option --compiler-filter=quicken" |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 268 | fi |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 269 | |
| 270 | if [[ $mode != "ri" ]]; then |
| 271 | vm_args="$vm_args --vm-arg -Xusejit:$use_jit" |
| 272 | debuggee_args="$debuggee_args -Xusejit:$use_jit" |
| 273 | fi |
| 274 | |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 275 | if [[ $debug == "yes" ]]; then |
| 276 | art="$art -d" |
| 277 | art_debugee="$art_debugee -d" |
Andreas Gampe | 1c5b42f | 2017-06-15 18:20:45 -0700 | [diff] [blame] | 278 | vm_args="$vm_args --vm-arg -XXlib:libartd.so --vm-arg -XX:SlowDebug=true" |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 279 | fi |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 280 | if [[ $verbose == "yes" ]]; then |
| 281 | # Enable JDWP logs in the debuggee. |
| 282 | art_debugee="$art_debugee -verbose:jdwp" |
| 283 | fi |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 284 | |
Colin Cross | e0ef0a8 | 2017-07-27 21:29:18 +0000 | [diff] [blame] | 285 | if [[ $using_jack == "true" ]]; then |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 286 | toolchain_args="--toolchain jack --language JN --jack-arg -g" |
| 287 | else |
| 288 | toolchain_args="--toolchain jdk --language CUR" |
| 289 | fi |
| 290 | |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 291 | # Run the tests using vogar. |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 292 | vogar $vm_command \ |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 293 | $vm_args \ |
Nicolas Geoffray | 9620b9d | 2015-03-30 12:28:26 +0100 | [diff] [blame] | 294 | --verbose \ |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 295 | $args \ |
| 296 | $device_dir \ |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 297 | $image_compiler_option \ |
Nicolas Geoffray | 472b00c | 2015-05-06 14:57:09 +0100 | [diff] [blame] | 298 | --timeout 800 \ |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 299 | --vm-arg -Djpda.settings.verbose=true \ |
Sebastien Hertz | c3b208c | 2017-03-27 11:35:54 +0200 | [diff] [blame] | 300 | --vm-arg -Djpda.settings.timeout=$jdwp_test_timeout \ |
| 301 | --vm-arg -Djpda.settings.waitingTime=$jdwp_test_timeout \ |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 302 | --vm-arg -Djpda.settings.transportAddress=127.0.0.1:55107 \ |
Alex Light | 617c9c5 | 2017-08-18 11:52:25 -0700 | [diff] [blame] | 303 | --vm-arg -Djpda.settings.debuggeeJavaPath="$art_debugee $plugin $image $debuggee_args" \ |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 304 | --classpath "$test_jar" \ |
| 305 | $toolchain_args \ |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 306 | $test |
Hiroshi Yamauchi | a166bbb | 2015-11-19 16:24:31 -0800 | [diff] [blame] | 307 | |
| 308 | vogar_exit_status=$? |
| 309 | |
| 310 | echo "Killing stalled dalvikvm processes..." |
Alex Light | c611ffa | 2017-10-18 08:59:16 -0700 | [diff] [blame^] | 311 | if [[ $mode == "host" ]]; then |
Hiroshi Yamauchi | a166bbb | 2015-11-19 16:24:31 -0800 | [diff] [blame] | 312 | pkill -9 -f /bin/dalvikvm |
| 313 | else |
| 314 | adb shell pkill -9 -f /bin/dalvikvm |
| 315 | fi |
| 316 | echo "Done." |
| 317 | |
| 318 | exit $vogar_exit_status |