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