blob: a007fa2171468eedc8f2b874a7755d801bd54c85 [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
Nicolas Geoffray71affb52015-04-20 17:52:58 +010022if [[ $ANDROID_SERIAL == HT4CTJT03670 ]] || [[ $ANDROID_SERIAL == HT49CJT00070 ]]; then
23 echo "Not running on buildbot because of failures on volantis. Investigating."
24 exit 0
25fi
26
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000027# Jar containing all the tests.
28test_jar=out/host/linux-x86/framework/apache-harmony-jdwp-tests-hostdex.jar
29junit_jar=out/host/linux-x86/framework/junit.jar
30
31if [ ! -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
35fi
36
37art="/data/local/tmp/system/bin/art"
Nicolas Geoffray33e1f8f2015-04-24 14:37:29 +010038art_debugee="sh /data/local/tmp/system/bin/art"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000039# We use Quick's image on target because optimizing's image is not compiled debuggable.
40image="-Ximage:/data/art-test/core.art"
41args=$@
42debuggee_args="-Xcompiler-option --compiler-backend=Optimizing -Xcompiler-option --debuggable"
43device_dir="--device-dir=/data/local/tmp"
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010044# We use the art script on target to ensure the runner and the debuggee share the same
45# image.
46vm_command="--vm-command=$art"
Nicolas Geoffraya2c18612015-03-30 23:01:28 +010047image_compiler_option=""
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000048
49while true; do
50 if [[ "$1" == "--mode=host" ]]; then
Nicolas Geoffray59786902015-03-30 16:34:16 +010051 # Specify bash explicitly since the art script cannot, since it has to run on the device
52 # with mksh.
53 art="bash out/host/linux-x86/bin/art"
Nicolas Geoffray33e1f8f2015-04-24 14:37:29 +010054 art_debugee="bash out/host/linux-x86/bin/art"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000055 # We force generation of a new image to avoid build-time and run-time classpath differences.
56 image="-Ximage:/system/non/existent"
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010057 # We do not need a device directory on host.
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000058 device_dir=""
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010059 # Vogar knows which VM to use on host.
60 vm_command=""
Nicolas Geoffraya2c18612015-03-30 23:01:28 +010061 # We only compile the image on the host. Note that not providing this option
62 # puts us below the adb command limit for vogar.
63 image_compiler_option="--vm-arg -Ximage-compiler-option --vm-arg --debuggable"
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000064 shift
65 elif [[ $1 == -Ximage:* ]]; then
66 image="$1"
67 shift
68 elif [[ "$1" == "" ]]; then
69 break
70 else
71 shift
72 fi
73done
74
75# Run the tests using vogar.
Nicolas Geoffrayd06dc9c2015-03-30 15:30:26 +010076vogar $vm_command \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000077 --vm-arg $image \
Nicolas Geoffray9620b9d2015-03-30 12:28:26 +010078 --verbose \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000079 $args \
80 $device_dir \
Nicolas Geoffraya2c18612015-03-30 23:01:28 +010081 $image_compiler_option \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000082 --timeout 600 \
83 --vm-arg -Djpda.settings.verbose=true \
84 --vm-arg -Djpda.settings.syncPort=34016 \
Nicolas Geoffraya2c18612015-03-30 23:01:28 +010085 --vm-arg -Djpda.settings.transportAddress=127.0.0.1:55107 \
Nicolas Geoffray33e1f8f2015-04-24 14:37:29 +010086 --vm-arg -Djpda.settings.debuggeeJavaPath="\"$art_debugee $image $debuggee_args\"" \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000087 --classpath $test_jar \
88 --classpath $junit_jar \
89 --vm-arg -Xcompiler-option --vm-arg --compiler-backend=Optimizing \
90 --vm-arg -Xcompiler-option --vm-arg --debuggable \
91 org.apache.harmony.jpda.tests.share.AllTests