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 | |
Colin Cross | e0ef0a8 | 2017-07-27 21:29:18 +0000 | [diff] [blame] | 29 | using_jack=$(get_build_var ANDROID_COMPILE_WITH_JACK) |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 30 | |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 31 | function jlib_suffix { |
| 32 | local str=$1 |
| 33 | local suffix="jar" |
Colin Cross | e0ef0a8 | 2017-07-27 21:29:18 +0000 | [diff] [blame] | 34 | if [[ $using_jack == "true" ]]; then |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 35 | suffix="jack" |
| 36 | fi |
| 37 | echo "$str.$suffix" |
| 38 | } |
| 39 | |
| 40 | # Jar containing all the tests. |
| 41 | test_jar=$(jlib_suffix "${ANDROID_HOST_OUT}/../common/obj/JAVA_LIBRARIES/apache-harmony-jdwp-tests-hostdex_intermediates/classes") |
| 42 | |
| 43 | if [ ! -f $test_jar ]; then |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 44 | echo "Before running, you must build jdwp tests and vogar:" \ |
Roland Levillain | 7235dd1 | 2016-05-20 18:16:54 +0100 | [diff] [blame] | 45 | "make apache-harmony-jdwp-tests-hostdex vogar" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 46 | exit 1 |
| 47 | fi |
| 48 | |
| 49 | art="/data/local/tmp/system/bin/art" |
Nicolas Geoffray | 33e1f8f | 2015-04-24 14:37:29 +0100 | [diff] [blame] | 50 | art_debugee="sh /data/local/tmp/system/bin/art" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 51 | args=$@ |
Nicolas Geoffray | d553b43 | 2015-07-13 14:35:17 +0100 | [diff] [blame] | 52 | debuggee_args="-Xcompiler-option --debuggable" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 53 | device_dir="--device-dir=/data/local/tmp" |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 54 | # We use the art script on target to ensure the runner and the debuggee share the same |
| 55 | # image. |
| 56 | vm_command="--vm-command=$art" |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 57 | image_compiler_option="" |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 58 | debug="no" |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 59 | verbose="no" |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 60 | image="-Ximage:/data/art-test/core.art" |
Nicolas Geoffray | 9518655 | 2015-10-28 13:06:21 +0000 | [diff] [blame] | 61 | vm_args="" |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 62 | # By default, we run the whole JDWP test suite. |
| 63 | test="org.apache.harmony.jpda.tests.share.AllTests" |
Hiroshi Yamauchi | a166bbb | 2015-11-19 16:24:31 -0800 | [diff] [blame] | 64 | host="no" |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 65 | # Use JIT compiling by default. |
| 66 | use_jit=true |
Andreas Gampe | 85b286b | 2015-12-30 19:37:48 -0800 | [diff] [blame] | 67 | variant_cmdline_parameter="--variant=X32" |
Sebastien Hertz | c3b208c | 2017-03-27 11:35:54 +0200 | [diff] [blame] | 68 | # 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). |
| 73 | jdwp_test_timeout=10000 |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 74 | |
| 75 | while true; do |
| 76 | if [[ "$1" == "--mode=host" ]]; then |
Hiroshi Yamauchi | a166bbb | 2015-11-19 16:24:31 -0800 | [diff] [blame] | 77 | host="yes" |
Nicolas Geoffray | 5978690 | 2015-03-30 16:34:16 +0100 | [diff] [blame] | 78 | # Specify bash explicitly since the art script cannot, since it has to run on the device |
| 79 | # with mksh. |
Alex Light | b15fea2 | 2015-09-17 16:59:09 -0700 | [diff] [blame] | 80 | art="bash ${OUT_DIR-out}/host/linux-x86/bin/art" |
| 81 | art_debugee="bash ${OUT_DIR-out}/host/linux-x86/bin/art" |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 82 | # 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 Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 84 | # We do not need a device directory on host. |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 85 | device_dir="" |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 86 | # Vogar knows which VM to use on host. |
| 87 | vm_command="" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 88 | shift |
| 89 | elif [[ $1 == -Ximage:* ]]; then |
| 90 | image="$1" |
| 91 | shift |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 92 | elif [[ "$1" == "--no-jit" ]]; then |
| 93 | use_jit=false |
| 94 | # Remove the --no-jit from the arguments. |
| 95 | args=${args/$1} |
| 96 | shift |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 97 | elif [[ $1 == "--debug" ]]; then |
| 98 | debug="yes" |
| 99 | # Remove the --debug from the arguments. |
| 100 | args=${args/$1} |
| 101 | shift |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 102 | 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 Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 115 | elif [[ "$1" == "" ]]; then |
| 116 | break |
Andreas Gampe | 85b286b | 2015-12-30 19:37:48 -0800 | [diff] [blame] | 117 | elif [[ $1 == --variant=* ]]; then |
| 118 | variant_cmdline_parameter=$1 |
| 119 | shift |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 120 | else |
| 121 | shift |
| 122 | fi |
| 123 | done |
| 124 | |
Nicolas Geoffray | c0c0785 | 2017-08-08 09:44:15 +0100 | [diff] [blame] | 125 | # Make sure the debuggee doesn't clean up what the debugger has generated. |
| 126 | art_debugee="$art_debugee --no-clean" |
| 127 | |
Andreas Gampe | 85b286b | 2015-12-30 19:37:48 -0800 | [diff] [blame] | 128 | # For the host: |
| 129 | # |
| 130 | # If, on the other hand, there is a variant set, use it to modify the art_debugee parameter to |
| 131 | # force the fork to have the same bitness as the controller. This should be fine and not impact |
| 132 | # testing (cross-bitness), as the protocol is always 64-bit anyways (our implementation). |
| 133 | # |
| 134 | # Note: this isn't necessary for the device as the BOOTCLASSPATH environment variable is set there |
| 135 | # and used as a fallback. |
| 136 | if [[ $host == "yes" ]]; then |
| 137 | variant=${variant_cmdline_parameter:10} |
| 138 | if [[ $variant == "x32" || $variant == "X32" ]]; then |
| 139 | art_debugee="$art_debugee --32" |
| 140 | elif [[ $variant == "x64" || $variant == "X64" ]]; then |
| 141 | art_debugee="$art_debugee --64" |
| 142 | else |
| 143 | echo "Error, do not understand variant $variant_cmdline_parameter." |
| 144 | exit 1 |
| 145 | fi |
| 146 | fi |
| 147 | |
Nicolas Geoffray | 9518655 | 2015-10-28 13:06:21 +0000 | [diff] [blame] | 148 | if [[ "$image" != "" ]]; then |
| 149 | vm_args="--vm-arg $image" |
| 150 | fi |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 151 | if $use_jit; then |
Nicolas Geoffray | 49cda06 | 2017-04-21 13:08:25 +0100 | [diff] [blame] | 152 | vm_args="$vm_args --vm-arg -Xcompiler-option --vm-arg --compiler-filter=quicken" |
| 153 | debuggee_args="$debuggee_args -Xcompiler-option --compiler-filter=quicken" |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 154 | fi |
| 155 | vm_args="$vm_args --vm-arg -Xusejit:$use_jit" |
| 156 | debuggee_args="$debuggee_args -Xusejit:$use_jit" |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 157 | if [[ $debug == "yes" ]]; then |
| 158 | art="$art -d" |
| 159 | art_debugee="$art_debugee -d" |
Andreas Gampe | 1c5b42f | 2017-06-15 18:20:45 -0700 | [diff] [blame] | 160 | 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] | 161 | fi |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 162 | if [[ $verbose == "yes" ]]; then |
| 163 | # Enable JDWP logs in the debuggee. |
| 164 | art_debugee="$art_debugee -verbose:jdwp" |
| 165 | fi |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 166 | |
Colin Cross | e0ef0a8 | 2017-07-27 21:29:18 +0000 | [diff] [blame] | 167 | if [[ $using_jack == "true" ]]; then |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 168 | toolchain_args="--toolchain jack --language JN --jack-arg -g" |
| 169 | else |
| 170 | toolchain_args="--toolchain jdk --language CUR" |
| 171 | fi |
| 172 | |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 173 | # Run the tests using vogar. |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 174 | vogar $vm_command \ |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 175 | $vm_args \ |
Nicolas Geoffray | 9620b9d | 2015-03-30 12:28:26 +0100 | [diff] [blame] | 176 | --verbose \ |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 177 | $args \ |
| 178 | $device_dir \ |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 179 | $image_compiler_option \ |
Nicolas Geoffray | 472b00c | 2015-05-06 14:57:09 +0100 | [diff] [blame] | 180 | --timeout 800 \ |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 181 | --vm-arg -Djpda.settings.verbose=true \ |
Sebastien Hertz | c3b208c | 2017-03-27 11:35:54 +0200 | [diff] [blame] | 182 | --vm-arg -Djpda.settings.timeout=$jdwp_test_timeout \ |
| 183 | --vm-arg -Djpda.settings.waitingTime=$jdwp_test_timeout \ |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 184 | --vm-arg -Djpda.settings.transportAddress=127.0.0.1:55107 \ |
Paul Duffin | 1acc729 | 2015-12-01 13:56:52 +0000 | [diff] [blame] | 185 | --vm-arg -Djpda.settings.debuggeeJavaPath="$art_debugee $image $debuggee_args" \ |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 186 | --classpath "$test_jar" \ |
| 187 | $toolchain_args \ |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 188 | --vm-arg -Xcompiler-option --vm-arg --debuggable \ |
Sebastien Hertz | a646aaf | 2015-09-10 12:03:51 +0200 | [diff] [blame] | 189 | $test |
Hiroshi Yamauchi | a166bbb | 2015-11-19 16:24:31 -0800 | [diff] [blame] | 190 | |
| 191 | vogar_exit_status=$? |
| 192 | |
| 193 | echo "Killing stalled dalvikvm processes..." |
| 194 | if [[ $host == "yes" ]]; then |
| 195 | pkill -9 -f /bin/dalvikvm |
| 196 | else |
| 197 | adb shell pkill -9 -f /bin/dalvikvm |
| 198 | fi |
| 199 | echo "Done." |
| 200 | |
| 201 | exit $vogar_exit_status |