blob: 17c84b4f8460905b04515f569a313cac1b498aca [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 Crossd092e742017-07-27 06:03:00 +000022if [ -z "$ANDROID_JAVA_TOOLCHAIN" ] ; then
23 source build/envsetup.sh
24 setpaths # include platform prebuilt java, javac, etc in $PATH.
25fi
Shubham Ajmerac33c0872017-07-20 18:41:52 -070026
Andreas Gampeebd089d2016-07-18 14:56:56 -070027if [ -z "$ANDROID_HOST_OUT" ] ; then
28 ANDROID_HOST_OUT=${OUT_DIR-$ANDROID_BUILD_TOP/out}/host/linux-x86
29fi
30
Colin Crossd092e742017-07-27 06:03:00 +000031using_jack=true
32if [[ $ANDROID_COMPILE_WITH_JACK == false ]]; then
33 using_jack=false
34fi
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000035
Igor Murashkin84f26322017-06-06 11:36:33 -070036function jlib_suffix {
37 local str=$1
38 local suffix="jar"
Colin Crossd092e742017-07-27 06:03:00 +000039 if $using_jack; then
Igor Murashkin84f26322017-06-06 11:36:33 -070040 suffix="jack"
41 fi
42 echo "$str.$suffix"
43}
44
45# Jar containing all the tests.
46test_jar=$(jlib_suffix "${ANDROID_HOST_OUT}/../common/obj/JAVA_LIBRARIES/apache-harmony-jdwp-tests-hostdex_intermediates/classes")
47
48if [ ! -f $test_jar ]; then
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000049 echo "Before running, you must build jdwp tests and vogar:" \
Roland Levillain7235dd12016-05-20 18:16:54 +010050 "make apache-harmony-jdwp-tests-hostdex vogar"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000051 exit 1
52fi
53
54art="/data/local/tmp/system/bin/art"
Nicolas Geoffray33e1f8f2015-04-24 14:37:29 +010055art_debugee="sh /data/local/tmp/system/bin/art"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000056args=$@
Nicolas Geoffrayd553b432015-07-13 14:35:17 +010057debuggee_args="-Xcompiler-option --debuggable"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000058device_dir="--device-dir=/data/local/tmp"
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010059# We use the art script on target to ensure the runner and the debuggee share the same
60# image.
61vm_command="--vm-command=$art"
Nicolas Geoffraya2c18612015-03-30 23:01:28 +010062image_compiler_option=""
Nicolas Geoffray9648a632015-06-15 14:35:01 +010063debug="no"
Sebastien Hertza646aaf2015-09-10 12:03:51 +020064verbose="no"
Nicolas Geoffrayb76bc782016-09-14 12:33:34 +000065image="-Ximage:/data/art-test/core.art"
Nicolas Geoffray95186552015-10-28 13:06:21 +000066vm_args=""
Sebastien Hertza646aaf2015-09-10 12:03:51 +020067# By default, we run the whole JDWP test suite.
68test="org.apache.harmony.jpda.tests.share.AllTests"
Hiroshi Yamauchia166bbb2015-11-19 16:24:31 -080069host="no"
Roland Levillain5db109b2016-05-19 12:24:17 +010070# Use JIT compiling by default.
71use_jit=true
Andreas Gampe85b286b2015-12-30 19:37:48 -080072variant_cmdline_parameter="--variant=X32"
Sebastien Hertzc3b208c2017-03-27 11:35:54 +020073# Timeout of JDWP test in ms.
74#
75# Note: some tests expect a timeout to check that *no* reply/event is received for a specific case.
76# A lower timeout can save up several minutes when running the whole test suite, especially for
77# continuous testing. This value can be adjusted to fit the configuration of the host machine(s).
78jdwp_test_timeout=10000
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000079
80while true; do
81 if [[ "$1" == "--mode=host" ]]; then
Hiroshi Yamauchia166bbb2015-11-19 16:24:31 -080082 host="yes"
Nicolas Geoffray59786902015-03-30 16:34:16 +010083 # Specify bash explicitly since the art script cannot, since it has to run on the device
84 # with mksh.
Alex Lightb15fea22015-09-17 16:59:09 -070085 art="bash ${OUT_DIR-out}/host/linux-x86/bin/art"
86 art_debugee="bash ${OUT_DIR-out}/host/linux-x86/bin/art"
Andreas Gampe8994a042015-12-30 19:03:17 +000087 # We force generation of a new image to avoid build-time and run-time classpath differences.
88 image="-Ximage:/system/non/existent/vogar.art"
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010089 # We do not need a device directory on host.
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000090 device_dir=""
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010091 # Vogar knows which VM to use on host.
92 vm_command=""
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000093 shift
94 elif [[ $1 == -Ximage:* ]]; then
95 image="$1"
96 shift
Roland Levillain5db109b2016-05-19 12:24:17 +010097 elif [[ "$1" == "--no-jit" ]]; then
98 use_jit=false
99 # Remove the --no-jit from the arguments.
100 args=${args/$1}
101 shift
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100102 elif [[ $1 == "--debug" ]]; then
103 debug="yes"
104 # Remove the --debug from the arguments.
105 args=${args/$1}
106 shift
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200107 elif [[ $1 == "--verbose" ]]; then
108 verbose="yes"
109 # Remove the --verbose from the arguments.
110 args=${args/$1}
111 shift
112 elif [[ $1 == "--test" ]]; then
113 # Remove the --test from the arguments.
114 args=${args/$1}
115 shift
116 test=$1
117 # Remove the test from the arguments.
118 args=${args/$1}
119 shift
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000120 elif [[ "$1" == "" ]]; then
121 break
Andreas Gampe85b286b2015-12-30 19:37:48 -0800122 elif [[ $1 == --variant=* ]]; then
123 variant_cmdline_parameter=$1
124 shift
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000125 else
126 shift
127 fi
128done
129
Andreas Gampe85b286b2015-12-30 19:37:48 -0800130# For the host:
131#
132# If, on the other hand, there is a variant set, use it to modify the art_debugee parameter to
133# force the fork to have the same bitness as the controller. This should be fine and not impact
134# testing (cross-bitness), as the protocol is always 64-bit anyways (our implementation).
135#
136# Note: this isn't necessary for the device as the BOOTCLASSPATH environment variable is set there
137# and used as a fallback.
138if [[ $host == "yes" ]]; then
139 variant=${variant_cmdline_parameter:10}
140 if [[ $variant == "x32" || $variant == "X32" ]]; then
141 art_debugee="$art_debugee --32"
142 elif [[ $variant == "x64" || $variant == "X64" ]]; then
143 art_debugee="$art_debugee --64"
144 else
145 echo "Error, do not understand variant $variant_cmdline_parameter."
146 exit 1
147 fi
148fi
149
Nicolas Geoffray95186552015-10-28 13:06:21 +0000150if [[ "$image" != "" ]]; then
151 vm_args="--vm-arg $image"
152fi
Roland Levillain5db109b2016-05-19 12:24:17 +0100153if $use_jit; then
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100154 vm_args="$vm_args --vm-arg -Xcompiler-option --vm-arg --compiler-filter=quicken"
155 debuggee_args="$debuggee_args -Xcompiler-option --compiler-filter=quicken"
Roland Levillain5db109b2016-05-19 12:24:17 +0100156fi
157vm_args="$vm_args --vm-arg -Xusejit:$use_jit"
158debuggee_args="$debuggee_args -Xusejit:$use_jit"
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100159if [[ $debug == "yes" ]]; then
160 art="$art -d"
161 art_debugee="$art_debugee -d"
Andreas Gampe1c5b42f2017-06-15 18:20:45 -0700162 vm_args="$vm_args --vm-arg -XXlib:libartd.so --vm-arg -XX:SlowDebug=true"
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100163fi
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200164if [[ $verbose == "yes" ]]; then
165 # Enable JDWP logs in the debuggee.
166 art_debugee="$art_debugee -verbose:jdwp"
167fi
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100168
Colin Crossd092e742017-07-27 06:03:00 +0000169if $using_jack; then
Igor Murashkin84f26322017-06-06 11:36:33 -0700170 toolchain_args="--toolchain jack --language JN --jack-arg -g"
171else
172 toolchain_args="--toolchain jdk --language CUR"
173fi
174
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000175# Run the tests using vogar.
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +0100176vogar $vm_command \
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100177 $vm_args \
Nicolas Geoffray9620b9d2015-03-30 12:28:26 +0100178 --verbose \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000179 $args \
180 $device_dir \
Nicolas Geoffraya2c18612015-03-30 23:01:28 +0100181 $image_compiler_option \
Nicolas Geoffray472b00c2015-05-06 14:57:09 +0100182 --timeout 800 \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000183 --vm-arg -Djpda.settings.verbose=true \
Sebastien Hertzc3b208c2017-03-27 11:35:54 +0200184 --vm-arg -Djpda.settings.timeout=$jdwp_test_timeout \
185 --vm-arg -Djpda.settings.waitingTime=$jdwp_test_timeout \
Nicolas Geoffraya2c18612015-03-30 23:01:28 +0100186 --vm-arg -Djpda.settings.transportAddress=127.0.0.1:55107 \
Paul Duffin1acc7292015-12-01 13:56:52 +0000187 --vm-arg -Djpda.settings.debuggeeJavaPath="$art_debugee $image $debuggee_args" \
Igor Murashkin84f26322017-06-06 11:36:33 -0700188 --classpath "$test_jar" \
189 $toolchain_args \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000190 --vm-arg -Xcompiler-option --vm-arg --debuggable \
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200191 $test
Hiroshi Yamauchia166bbb2015-11-19 16:24:31 -0800192
193vogar_exit_status=$?
194
195echo "Killing stalled dalvikvm processes..."
196if [[ $host == "yes" ]]; then
197 pkill -9 -f /bin/dalvikvm
198else
199 adb shell pkill -9 -f /bin/dalvikvm
200fi
201echo "Done."
202
203exit $vogar_exit_status