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 | |
Nicolas Geoffray | 930ba1c | 2015-03-31 11:33:04 +0100 | [diff] [blame] | 22 | if [[ $ANDROID_SERIAL == 03a79ae90ae5889b ]] || [[ $ANDROID_SERIAL == HT4CTJT03670 ]] || [[ $ANDROID_SERIAL == HT49CJT00070 ]]; then |
| 23 | echo "Not run because of localhost failures. Investigating." |
| 24 | exit 0 |
| 25 | fi |
| 26 | |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 27 | # Jar containing all the tests. |
| 28 | test_jar=out/host/linux-x86/framework/apache-harmony-jdwp-tests-hostdex.jar |
| 29 | junit_jar=out/host/linux-x86/framework/junit.jar |
| 30 | |
| 31 | if [ ! -f $test_jar -o ! -f $junit_jar ]; then |
| 32 | echo "Before running, you must build jdwp tests and vogar:" \ |
| 33 | "make junit apache-harmony-jdwp-tests-hostdex vogar vogar.jar" |
| 34 | exit 1 |
| 35 | fi |
| 36 | |
| 37 | art="/data/local/tmp/system/bin/art" |
| 38 | # We use Quick's image on target because optimizing's image is not compiled debuggable. |
| 39 | image="-Ximage:/data/art-test/core.art" |
| 40 | args=$@ |
| 41 | debuggee_args="-Xcompiler-option --compiler-backend=Optimizing -Xcompiler-option --debuggable" |
| 42 | device_dir="--device-dir=/data/local/tmp" |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 43 | # We use the art script on target to ensure the runner and the debuggee share the same |
| 44 | # image. |
| 45 | vm_command="--vm-command=$art" |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 46 | image_compiler_option="" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 47 | |
| 48 | while true; do |
| 49 | if [[ "$1" == "--mode=host" ]]; then |
Nicolas Geoffray | 5978690 | 2015-03-30 16:34:16 +0100 | [diff] [blame] | 50 | # Specify bash explicitly since the art script cannot, since it has to run on the device |
| 51 | # with mksh. |
| 52 | art="bash out/host/linux-x86/bin/art" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 53 | # We force generation of a new image to avoid build-time and run-time classpath differences. |
| 54 | image="-Ximage:/system/non/existent" |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 55 | # We do not need a device directory on host. |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 56 | device_dir="" |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 57 | # Vogar knows which VM to use on host. |
| 58 | vm_command="" |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 59 | # We only compile the image on the host. Note that not providing this option |
| 60 | # puts us below the adb command limit for vogar. |
| 61 | image_compiler_option="--vm-arg -Ximage-compiler-option --vm-arg --debuggable" |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 62 | shift |
| 63 | elif [[ $1 == -Ximage:* ]]; then |
| 64 | image="$1" |
| 65 | shift |
| 66 | elif [[ "$1" == "" ]]; then |
| 67 | break |
| 68 | else |
| 69 | shift |
| 70 | fi |
| 71 | done |
| 72 | |
| 73 | # Run the tests using vogar. |
Nicolas Geoffray | d06dc9c | 2015-03-30 15:30:26 +0100 | [diff] [blame] | 74 | vogar $vm_command \ |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 75 | --vm-arg $image \ |
Nicolas Geoffray | 9620b9d | 2015-03-30 12:28:26 +0100 | [diff] [blame] | 76 | --verbose \ |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 77 | $args \ |
| 78 | $device_dir \ |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 79 | $image_compiler_option \ |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 80 | --timeout 600 \ |
| 81 | --vm-arg -Djpda.settings.verbose=true \ |
| 82 | --vm-arg -Djpda.settings.syncPort=34016 \ |
Nicolas Geoffray | a2c1861 | 2015-03-30 23:01:28 +0100 | [diff] [blame] | 83 | --vm-arg -Djpda.settings.transportAddress=127.0.0.1:55107 \ |
Nicolas Geoffray | 96cd87a | 2015-03-26 16:48:29 +0000 | [diff] [blame] | 84 | --vm-arg -Djpda.settings.debuggeeJavaPath="$art $image $debuggee_args" \ |
| 85 | --classpath $test_jar \ |
| 86 | --classpath $junit_jar \ |
| 87 | --vm-arg -Xcompiler-option --vm-arg --compiler-backend=Optimizing \ |
| 88 | --vm-arg -Xcompiler-option --vm-arg --debuggable \ |
| 89 | org.apache.harmony.jpda.tests.share.AllTests |