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 17if [ ! -d libcore ]; then 18 echo "Script needs to be run at the root of the android tree" 19 exit 1 20fi 21 22if [ -z "$ANDROID_HOST_OUT" ] ; then 23 ANDROID_HOST_OUT=${OUT_DIR-$ANDROID_BUILD_TOP/out}/host/linux-x86 24fi 25 26# Jar containing all the tests. 27test_jack=${ANDROID_HOST_OUT}/../common/obj/JAVA_LIBRARIES/apache-harmony-jdwp-tests-hostdex_intermediates/classes.jack 28 29if [ ! -f $test_jack ]; then 30 echo "Before running, you must build jdwp tests and vogar:" \ 31 "make apache-harmony-jdwp-tests-hostdex vogar" 32 exit 1 33fi 34 35art="/data/local/tmp/system/bin/art" 36art_debugee="sh /data/local/tmp/system/bin/art" 37args=$@ 38debuggee_args="-Xcompiler-option --debuggable" 39device_dir="--device-dir=/data/local/tmp" 40# We use the art script on target to ensure the runner and the debuggee share the same 41# image. 42vm_command="--vm-command=$art" 43image_compiler_option="" 44debug="no" 45verbose="no" 46image="-Ximage:/data/art-test/core.art" 47vm_args="" 48# By default, we run the whole JDWP test suite. 49test="org.apache.harmony.jpda.tests.share.AllTests" 50host="no" 51# Use JIT compiling by default. 52use_jit=true 53variant_cmdline_parameter="--variant=X32" 54# Timeout of JDWP test in ms. 55# 56# Note: some tests expect a timeout to check that *no* reply/event is received for a specific case. 57# A lower timeout can save up several minutes when running the whole test suite, especially for 58# continuous testing. This value can be adjusted to fit the configuration of the host machine(s). 59jdwp_test_timeout=10000 60 61while true; do 62 if [[ "$1" == "--mode=host" ]]; then 63 host="yes" 64 # Specify bash explicitly since the art script cannot, since it has to run on the device 65 # with mksh. 66 art="bash ${OUT_DIR-out}/host/linux-x86/bin/art" 67 art_debugee="bash ${OUT_DIR-out}/host/linux-x86/bin/art" 68 # We force generation of a new image to avoid build-time and run-time classpath differences. 69 image="-Ximage:/system/non/existent/vogar.art" 70 # We do not need a device directory on host. 71 device_dir="" 72 # Vogar knows which VM to use on host. 73 vm_command="" 74 shift 75 elif [[ $1 == -Ximage:* ]]; then 76 image="$1" 77 shift 78 elif [[ "$1" == "--no-jit" ]]; then 79 use_jit=false 80 # Remove the --no-jit from the arguments. 81 args=${args/$1} 82 shift 83 elif [[ $1 == "--debug" ]]; then 84 debug="yes" 85 # Remove the --debug from the arguments. 86 args=${args/$1} 87 shift 88 elif [[ $1 == "--verbose" ]]; then 89 verbose="yes" 90 # Remove the --verbose from the arguments. 91 args=${args/$1} 92 shift 93 elif [[ $1 == "--test" ]]; then 94 # Remove the --test from the arguments. 95 args=${args/$1} 96 shift 97 test=$1 98 # Remove the test from the arguments. 99 args=${args/$1} 100 shift 101 elif [[ "$1" == "" ]]; then 102 break 103 elif [[ $1 == --variant=* ]]; then 104 variant_cmdline_parameter=$1 105 shift 106 else 107 shift 108 fi 109done 110 111# For the host: 112# 113# If, on the other hand, there is a variant set, use it to modify the art_debugee parameter to 114# force the fork to have the same bitness as the controller. This should be fine and not impact 115# testing (cross-bitness), as the protocol is always 64-bit anyways (our implementation). 116# 117# Note: this isn't necessary for the device as the BOOTCLASSPATH environment variable is set there 118# and used as a fallback. 119if [[ $host == "yes" ]]; then 120 variant=${variant_cmdline_parameter:10} 121 if [[ $variant == "x32" || $variant == "X32" ]]; then 122 art_debugee="$art_debugee --32" 123 elif [[ $variant == "x64" || $variant == "X64" ]]; then 124 art_debugee="$art_debugee --64" 125 else 126 echo "Error, do not understand variant $variant_cmdline_parameter." 127 exit 1 128 fi 129fi 130 131if [[ "$image" != "" ]]; then 132 vm_args="--vm-arg $image" 133fi 134if $use_jit; then 135 vm_args="$vm_args --vm-arg -Xcompiler-option --vm-arg --compiler-filter=quicken" 136 debuggee_args="$debuggee_args -Xcompiler-option --compiler-filter=quicken" 137fi 138vm_args="$vm_args --vm-arg -Xusejit:$use_jit" 139debuggee_args="$debuggee_args -Xusejit:$use_jit" 140if [[ $debug == "yes" ]]; then 141 art="$art -d" 142 art_debugee="$art_debugee -d" 143 vm_args="$vm_args --vm-arg -XXlib:libartd.so" 144fi 145if [[ $verbose == "yes" ]]; then 146 # Enable JDWP logs in the debuggee. 147 art_debugee="$art_debugee -verbose:jdwp" 148fi 149 150# Run the tests using vogar. 151vogar $vm_command \ 152 $vm_args \ 153 --verbose \ 154 $args \ 155 $device_dir \ 156 $image_compiler_option \ 157 --timeout 800 \ 158 --vm-arg -Djpda.settings.verbose=true \ 159 --vm-arg -Djpda.settings.timeout=$jdwp_test_timeout \ 160 --vm-arg -Djpda.settings.waitingTime=$jdwp_test_timeout \ 161 --vm-arg -Djpda.settings.transportAddress=127.0.0.1:55107 \ 162 --vm-arg -Djpda.settings.debuggeeJavaPath="$art_debugee $image $debuggee_args" \ 163 --classpath $test_jack \ 164 --toolchain jack --language JN \ 165 --vm-arg -Xcompiler-option --vm-arg --debuggable \ 166 --jack-arg -g \ 167 $test 168 169vogar_exit_status=$? 170 171echo "Killing stalled dalvikvm processes..." 172if [[ $host == "yes" ]]; then 173 pkill -9 -f /bin/dalvikvm 174else 175 adb shell pkill -9 -f /bin/dalvikvm 176fi 177echo "Done." 178 179exit $vogar_exit_status 180