blob: d2322bb3a9960d793176f2df81ebf448cc1007ce [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
Igor Murashkin08e33972017-07-26 13:03:00 -070022source 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
Igor Murashkin08e33972017-07-26 13:03:00 -070029using_jack=$(get_build_var ANDROID_COMPILE_WITH_JACK)
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000030
Igor Murashkin84f26322017-06-06 11:36:33 -070031function jlib_suffix {
32 local str=$1
33 local suffix="jar"
Igor Murashkin08e33972017-07-26 13:03:00 -070034 if [[ $using_jack == "true" ]]; then
Igor Murashkin84f26322017-06-06 11:36:33 -070035 suffix="jack"
36 fi
37 echo "$str.$suffix"
38}
39
40# Jar containing all the tests.
41test_jar=$(jlib_suffix "${ANDROID_HOST_OUT}/../common/obj/JAVA_LIBRARIES/apache-harmony-jdwp-tests-hostdex_intermediates/classes")
42
43if [ ! -f $test_jar ]; then
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000044 echo "Before running, you must build jdwp tests and vogar:" \
Roland Levillain7235dd12016-05-20 18:16:54 +010045 "make apache-harmony-jdwp-tests-hostdex vogar"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000046 exit 1
47fi
48
49art="/data/local/tmp/system/bin/art"
Nicolas Geoffray33e1f8f2015-04-24 14:37:29 +010050art_debugee="sh /data/local/tmp/system/bin/art"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000051args=$@
Nicolas Geoffrayd553b432015-07-13 14:35:17 +010052debuggee_args="-Xcompiler-option --debuggable"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000053device_dir="--device-dir=/data/local/tmp"
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010054# We use the art script on target to ensure the runner and the debuggee share the same
55# image.
56vm_command="--vm-command=$art"
Nicolas Geoffraya2c18612015-03-30 23:01:28 +010057image_compiler_option=""
Nicolas Geoffray9648a632015-06-15 14:35:01 +010058debug="no"
Sebastien Hertza646aaf2015-09-10 12:03:51 +020059verbose="no"
Nicolas Geoffrayb76bc782016-09-14 12:33:34 +000060image="-Ximage:/data/art-test/core.art"
Nicolas Geoffray95186552015-10-28 13:06:21 +000061vm_args=""
Sebastien Hertza646aaf2015-09-10 12:03:51 +020062# By default, we run the whole JDWP test suite.
63test="org.apache.harmony.jpda.tests.share.AllTests"
Hiroshi Yamauchia166bbb2015-11-19 16:24:31 -080064host="no"
Roland Levillain5db109b2016-05-19 12:24:17 +010065# Use JIT compiling by default.
66use_jit=true
Andreas Gampe85b286b2015-12-30 19:37:48 -080067variant_cmdline_parameter="--variant=X32"
Sebastien Hertzc3b208c2017-03-27 11:35:54 +020068# Timeout of JDWP test in ms.
69#
70# Note: some tests expect a timeout to check that *no* reply/event is received for a specific case.
71# A lower timeout can save up several minutes when running the whole test suite, especially for
72# continuous testing. This value can be adjusted to fit the configuration of the host machine(s).
73jdwp_test_timeout=10000
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000074
75while true; do
76 if [[ "$1" == "--mode=host" ]]; then
Hiroshi Yamauchia166bbb2015-11-19 16:24:31 -080077 host="yes"
Nicolas Geoffray59786902015-03-30 16:34:16 +010078 # Specify bash explicitly since the art script cannot, since it has to run on the device
79 # with mksh.
Alex Lightb15fea22015-09-17 16:59:09 -070080 art="bash ${OUT_DIR-out}/host/linux-x86/bin/art"
81 art_debugee="bash ${OUT_DIR-out}/host/linux-x86/bin/art"
Andreas Gampe8994a042015-12-30 19:03:17 +000082 # We force generation of a new image to avoid build-time and run-time classpath differences.
83 image="-Ximage:/system/non/existent/vogar.art"
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010084 # We do not need a device directory on host.
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000085 device_dir=""
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010086 # Vogar knows which VM to use on host.
87 vm_command=""
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000088 shift
89 elif [[ $1 == -Ximage:* ]]; then
90 image="$1"
91 shift
Roland Levillain5db109b2016-05-19 12:24:17 +010092 elif [[ "$1" == "--no-jit" ]]; then
93 use_jit=false
94 # Remove the --no-jit from the arguments.
95 args=${args/$1}
96 shift
Nicolas Geoffray9648a632015-06-15 14:35:01 +010097 elif [[ $1 == "--debug" ]]; then
98 debug="yes"
99 # Remove the --debug from the arguments.
100 args=${args/$1}
101 shift
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200102 elif [[ $1 == "--verbose" ]]; then
103 verbose="yes"
104 # Remove the --verbose from the arguments.
105 args=${args/$1}
106 shift
107 elif [[ $1 == "--test" ]]; then
108 # Remove the --test from the arguments.
109 args=${args/$1}
110 shift
111 test=$1
112 # Remove the test from the arguments.
113 args=${args/$1}
114 shift
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000115 elif [[ "$1" == "" ]]; then
116 break
Andreas Gampe85b286b2015-12-30 19:37:48 -0800117 elif [[ $1 == --variant=* ]]; then
118 variant_cmdline_parameter=$1
119 shift
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000120 else
121 shift
122 fi
123done
124
Andreas Gampe85b286b2015-12-30 19:37:48 -0800125# For the host:
126#
127# If, on the other hand, there is a variant set, use it to modify the art_debugee parameter to
128# force the fork to have the same bitness as the controller. This should be fine and not impact
129# testing (cross-bitness), as the protocol is always 64-bit anyways (our implementation).
130#
131# Note: this isn't necessary for the device as the BOOTCLASSPATH environment variable is set there
132# and used as a fallback.
133if [[ $host == "yes" ]]; then
134 variant=${variant_cmdline_parameter:10}
135 if [[ $variant == "x32" || $variant == "X32" ]]; then
136 art_debugee="$art_debugee --32"
137 elif [[ $variant == "x64" || $variant == "X64" ]]; then
138 art_debugee="$art_debugee --64"
139 else
140 echo "Error, do not understand variant $variant_cmdline_parameter."
141 exit 1
142 fi
143fi
144
Nicolas Geoffray95186552015-10-28 13:06:21 +0000145if [[ "$image" != "" ]]; then
146 vm_args="--vm-arg $image"
147fi
Roland Levillain5db109b2016-05-19 12:24:17 +0100148if $use_jit; then
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100149 vm_args="$vm_args --vm-arg -Xcompiler-option --vm-arg --compiler-filter=quicken"
150 debuggee_args="$debuggee_args -Xcompiler-option --compiler-filter=quicken"
Roland Levillain5db109b2016-05-19 12:24:17 +0100151fi
152vm_args="$vm_args --vm-arg -Xusejit:$use_jit"
153debuggee_args="$debuggee_args -Xusejit:$use_jit"
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100154if [[ $debug == "yes" ]]; then
155 art="$art -d"
156 art_debugee="$art_debugee -d"
Andreas Gampe1c5b42f2017-06-15 18:20:45 -0700157 vm_args="$vm_args --vm-arg -XXlib:libartd.so --vm-arg -XX:SlowDebug=true"
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100158fi
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200159if [[ $verbose == "yes" ]]; then
160 # Enable JDWP logs in the debuggee.
161 art_debugee="$art_debugee -verbose:jdwp"
162fi
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100163
Igor Murashkin08e33972017-07-26 13:03:00 -0700164if [[ $using_jack == "true" ]]; then
Igor Murashkin84f26322017-06-06 11:36:33 -0700165 toolchain_args="--toolchain jack --language JN --jack-arg -g"
166else
167 toolchain_args="--toolchain jdk --language CUR"
168fi
169
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000170# Run the tests using vogar.
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +0100171vogar $vm_command \
Nicolas Geoffray9648a632015-06-15 14:35:01 +0100172 $vm_args \
Nicolas Geoffray9620b9d2015-03-30 12:28:26 +0100173 --verbose \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000174 $args \
175 $device_dir \
Nicolas Geoffraya2c18612015-03-30 23:01:28 +0100176 $image_compiler_option \
Nicolas Geoffray472b00c2015-05-06 14:57:09 +0100177 --timeout 800 \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000178 --vm-arg -Djpda.settings.verbose=true \
Sebastien Hertzc3b208c2017-03-27 11:35:54 +0200179 --vm-arg -Djpda.settings.timeout=$jdwp_test_timeout \
180 --vm-arg -Djpda.settings.waitingTime=$jdwp_test_timeout \
Nicolas Geoffraya2c18612015-03-30 23:01:28 +0100181 --vm-arg -Djpda.settings.transportAddress=127.0.0.1:55107 \
Paul Duffin1acc7292015-12-01 13:56:52 +0000182 --vm-arg -Djpda.settings.debuggeeJavaPath="$art_debugee $image $debuggee_args" \
Igor Murashkin84f26322017-06-06 11:36:33 -0700183 --classpath "$test_jar" \
184 $toolchain_args \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +0000185 --vm-arg -Xcompiler-option --vm-arg --debuggable \
Sebastien Hertza646aaf2015-09-10 12:03:51 +0200186 $test
Hiroshi Yamauchia166bbb2015-11-19 16:24:31 -0800187
188vogar_exit_status=$?
189
190echo "Killing stalled dalvikvm processes..."
191if [[ $host == "yes" ]]; then
192 pkill -9 -f /bin/dalvikvm
193else
194 adb shell pkill -9 -f /bin/dalvikvm
195fi
196echo "Done."
197
198exit $vogar_exit_status