blob: db8c54056dbd0548f38fbc3b596352e6d22b6d66 [file] [log] [blame]
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +00001#!/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
17if [ ! -d libcore ]; then
18 echo "Script needs to be run at the root of the android tree"
19 exit 1
20fi
21
Colin Crosse0ef0a82017-07-27 21:29:18 +000022source build/envsetup.sh >&/dev/null # for get_build_var, setpaths
23setpaths # include platform prebuilt java, javac, etc in $PATH.
Shubham Ajmerac33c0872017-07-20 18:41:52 -070024
Andreas Gampeebd089d2016-07-18 14:56:56 -070025if [ -z "$ANDROID_HOST_OUT" ] ; then
26 ANDROID_HOST_OUT=${OUT_DIR-$ANDROID_BUILD_TOP/out}/host/linux-x86
27fi
28
Colin Crosse0ef0a82017-07-27 21:29:18 +000029using_jack=$(get_build_var ANDROID_COMPILE_WITH_JACK)
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000030
Alex Light617c9c52017-08-18 11:52:25 -070031java_lib_location="${ANDROID_HOST_OUT}/../common/obj/JAVA_LIBRARIES"
32make_target_name="apache-harmony-jdwp-tests-hostdex"
Igor Murashkin84f26322017-06-06 11:36:33 -070033
Alex Light617c9c52017-08-18 11:52:25 -070034vm_args=""
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000035art="/data/local/tmp/system/bin/art"
Nicolas Geoffray33e1f8f2015-04-24 14:37:29 +010036art_debugee="sh /data/local/tmp/system/bin/art"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000037args=$@
Nicolas Geoffrayd553b432015-07-13 14:35:17 +010038debuggee_args="-Xcompiler-option --debuggable"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000039device_dir="--device-dir=/data/local/tmp"
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010040# We use the art script on target to ensure the runner and the debuggee share the same
41# image.
42vm_command="--vm-command=$art"
Nicolas Geoffraya2c18612015-03-30 23:01:28 +010043image_compiler_option=""
Alex Light617c9c52017-08-18 11:52:25 -070044plugin=""
Nicolas Geoffray9648a632015-06-15 14:35:01 +010045debug="no"
Alex Light84b92e02017-09-29 13:46:14 -070046explicit_debug="no"
Sebastien Hertza646aaf2015-09-10 12:03:51 +020047verbose="no"
Nicolas Geoffrayb76bc782016-09-14 12:33:34 +000048image="-Ximage:/data/art-test/core.art"
Alex Light0ac2e5c2017-09-19 15:35:20 -070049with_jdwp_path=""
50agent_wrapper=""
Nicolas Geoffray95186552015-10-28 13:06:21 +000051vm_args=""
Sebastien Hertza646aaf2015-09-10 12:03:51 +020052# By default, we run the whole JDWP test suite.
Alex Light84b92e02017-09-29 13:46:14 -070053has_specific_test="no"
Sebastien Hertza646aaf2015-09-10 12:03:51 +020054test="org.apache.harmony.jpda.tests.share.AllTests"
Alex Light617c9c52017-08-18 11:52:25 -070055mode="target"
Roland Levillain5db109b2016-05-19 12:24:17 +010056# Use JIT compiling by default.
57use_jit=true
Andreas Gampe85b286b2015-12-30 19:37:48 -080058variant_cmdline_parameter="--variant=X32"
Sebastien Hertzc3b208c2017-03-27 11:35:54 +020059# 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).
64jdwp_test_timeout=10000
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000065
Alex Light84b92e02017-09-29 13:46:14 -070066gdb_target=
67has_gdb="no"
68
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000069while true; do
70 if [[ "$1" == "--mode=host" ]]; then
Alex Light617c9c52017-08-18 11:52:25 -070071 mode="host"
Nicolas Geoffray59786902015-03-30 16:34:16 +010072 # Specify bash explicitly since the art script cannot, since it has to run on the device
73 # with mksh.
Alex Lightb15fea22015-09-17 16:59:09 -070074 art="bash ${OUT_DIR-out}/host/linux-x86/bin/art"
75 art_debugee="bash ${OUT_DIR-out}/host/linux-x86/bin/art"
Andreas Gampe8994a042015-12-30 19:03:17 +000076 # 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 Geoffrayd06dc9c2015-03-30 15:30:26 +010078 # We do not need a device directory on host.
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000079 device_dir=""
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010080 # Vogar knows which VM to use on host.
81 vm_command=""
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000082 shift
Alex Light617c9c52017-08-18 11:52:25 -070083 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 Light0ac2e5c2017-09-19 15:35:20 -070099 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 Geoffray96cd87a2015-03-26 16:48:29 +0000107 elif [[ $1 == -Ximage:* ]]; then
108 image="$1"
109 shift
Roland Levillain5db109b2016-05-19 12:24:17 +0100110 elif [[ "$1" == "--no-jit" ]]; then
111 use_jit=false
112 # Remove the --no-jit from the arguments.
113 args=${args/$1}
114 shift
Alex Light84b92e02017-09-29 13:46:14 -0700115 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 Geoffray9648a632015-06-15 14:35:01 +0100121 elif [[ $1 == "--debug" ]]; then
Alex Light84b92e02017-09-29 13:46:14 -0700122 explicit_debug="yes"
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100123 debug="yes"
124 # Remove the --debug from the arguments.
125 args=${args/$1}
126 shift
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200127 elif [[ $1 == "--verbose" ]]; then
128 verbose="yes"
129 # Remove the --verbose from the arguments.
130 args=${args/$1}
131 shift
Alex Light84b92e02017-09-29 13:46:14 -0700132 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 Hertza646aaf2015-09-10 12:03:51 +0200141 elif [[ $1 == "--test" ]]; then
142 # Remove the --test from the arguments.
143 args=${args/$1}
144 shift
Alex Light84b92e02017-09-29 13:46:14 -0700145 has_specific_test="yes"
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200146 test=$1
147 # Remove the test from the arguments.
148 args=${args/$1}
149 shift
Alex Light617c9c52017-08-18 11:52:25 -0700150 elif [[ "$1" == "--jdwp-path" ]]; then
151 # Remove the --jdwp-path from the arguments.
152 args=${args/$1}
153 shift
Alex Light0ac2e5c2017-09-19 15:35:20 -0700154 with_jdwp_path=$1
Alex Light617c9c52017-08-18 11:52:25 -0700155 # Remove the path from the arguments.
156 args=${args/$1}
157 shift
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000158 elif [[ "$1" == "" ]]; then
159 break
Andreas Gampe85b286b2015-12-30 19:37:48 -0800160 elif [[ $1 == --variant=* ]]; then
161 variant_cmdline_parameter=$1
162 shift
Alex Light617c9c52017-08-18 11:52:25 -0700163 elif [[ $1 == -Xplugin:* ]]; then
164 plugin="$1"
165 args=${args/$1}
166 shift
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000167 else
168 shift
169 fi
170done
171
Alex Light84b92e02017-09-29 13:46:14 -0700172if [[ $has_gdb = "yes" ]]; then
173 if [[ $explicit_debug = "no" ]]; then
174 debug="yes"
175 fi
176fi
177
Alex Light617c9c52017-08-18 11:52:25 -0700178if [[ $mode == "ri" ]]; then
179 using_jack="false"
Alex Light0ac2e5c2017-09-19 15:35:20 -0700180 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 Light617c9c52017-08-18 11:52:25 -0700184 if [[ "x$image" != "x" ]]; then
185 echo "Cannot use -Ximage: with --mode=jvm"
186 exit 1
Alex Light84b92e02017-09-29 13:46:14 -0700187 elif [[ $has_gdb = "yes" ]]; then
188 echo "Cannot use --gdbserver with --mode=jvm"
189 exit 1
Alex Light617c9c52017-08-18 11:52:25 -0700190 elif [[ $debug == "yes" ]]; then
191 echo "Cannot use --debug with --mode=jvm"
192 exit 1
193 fi
194else
Alex Light84b92e02017-09-29 13:46:14 -0700195 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 Light0ac2e5c2017-09-19 15:35:20 -0700206 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 Light617c9c52017-08-18 11:52:25 -0700210 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"
213fi
214
215function 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.
229test_jar=$(jlib_name "${java_lib_location}/${make_target_name}_intermediates")
230
231if [[ ! -f $test_jar ]]; then
232 echo "Before running, you must build jdwp tests and vogar:" \
233 "make ${make_target_name} vogar"
234 exit 1
235fi
Nicolas Geoffrayc0c07852017-08-08 09:44:15 +0100236
Andreas Gampe85b286b2015-12-30 19:37:48 -0800237# 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 Light617c9c52017-08-18 11:52:25 -0700245if [[ $mode == "host" ]]; then
Andreas Gampe85b286b2015-12-30 19:37:48 -0800246 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
255fi
256
Nicolas Geoffray95186552015-10-28 13:06:21 +0000257if [[ "$image" != "" ]]; then
Alex Light617c9c52017-08-18 11:52:25 -0700258 vm_args="$vm_args --vm-arg $image"
Nicolas Geoffray95186552015-10-28 13:06:21 +0000259fi
Alex Light617c9c52017-08-18 11:52:25 -0700260
261if [[ "$plugin" != "" ]]; then
262 vm_args="$vm_args --vm-arg $plugin"
263fi
264
Roland Levillain5db109b2016-05-19 12:24:17 +0100265if $use_jit; then
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100266 vm_args="$vm_args --vm-arg -Xcompiler-option --vm-arg --compiler-filter=quicken"
267 debuggee_args="$debuggee_args -Xcompiler-option --compiler-filter=quicken"
Roland Levillain5db109b2016-05-19 12:24:17 +0100268fi
Alex Light617c9c52017-08-18 11:52:25 -0700269
270if [[ $mode != "ri" ]]; then
271 vm_args="$vm_args --vm-arg -Xusejit:$use_jit"
272 debuggee_args="$debuggee_args -Xusejit:$use_jit"
273fi
274
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100275if [[ $debug == "yes" ]]; then
276 art="$art -d"
277 art_debugee="$art_debugee -d"
Andreas Gampe1c5b42f2017-06-15 18:20:45 -0700278 vm_args="$vm_args --vm-arg -XXlib:libartd.so --vm-arg -XX:SlowDebug=true"
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100279fi
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200280if [[ $verbose == "yes" ]]; then
281 # Enable JDWP logs in the debuggee.
282 art_debugee="$art_debugee -verbose:jdwp"
283fi
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100284
Colin Crosse0ef0a82017-07-27 21:29:18 +0000285if [[ $using_jack == "true" ]]; then
Igor Murashkin84f26322017-06-06 11:36:33 -0700286 toolchain_args="--toolchain jack --language JN --jack-arg -g"
287else
Neil Fullerd206ee62017-10-19 19:05:17 +0100288 toolchain_args="--toolchain dx --language CUR"
Igor Murashkin84f26322017-06-06 11:36:33 -0700289fi
290
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000291# Run the tests using vogar.
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +0100292vogar $vm_command \
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100293 $vm_args \
Nicolas Geoffray9620b9d2015-03-30 12:28:26 +0100294 --verbose \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000295 $args \
296 $device_dir \
Nicolas Geoffraya2c18612015-03-30 23:01:28 +0100297 $image_compiler_option \
Nicolas Geoffray472b00c2015-05-06 14:57:09 +0100298 --timeout 800 \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000299 --vm-arg -Djpda.settings.verbose=true \
Sebastien Hertzc3b208c2017-03-27 11:35:54 +0200300 --vm-arg -Djpda.settings.timeout=$jdwp_test_timeout \
301 --vm-arg -Djpda.settings.waitingTime=$jdwp_test_timeout \
Nicolas Geoffraya2c18612015-03-30 23:01:28 +0100302 --vm-arg -Djpda.settings.transportAddress=127.0.0.1:55107 \
Alex Light617c9c52017-08-18 11:52:25 -0700303 --vm-arg -Djpda.settings.debuggeeJavaPath="$art_debugee $plugin $image $debuggee_args" \
Igor Murashkin84f26322017-06-06 11:36:33 -0700304 --classpath "$test_jar" \
305 $toolchain_args \
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200306 $test
Hiroshi Yamauchia166bbb2015-11-19 16:24:31 -0800307
308vogar_exit_status=$?
309
310echo "Killing stalled dalvikvm processes..."
Alex Lightc611ffa2017-10-18 08:59:16 -0700311if [[ $mode == "host" ]]; then
Hiroshi Yamauchia166bbb2015-11-19 16:24:31 -0800312 pkill -9 -f /bin/dalvikvm
313else
314 adb shell pkill -9 -f /bin/dalvikvm
315fi
316echo "Done."
317
318exit $vogar_exit_status