blob: 2c555d51f82260c0bf0bd5871b8229e384ac297e [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 Geoffray9620b9d2015-03-30 12:28:26 +010022if [ $ANDROID_SERIAL == 03a79ae90ae5889b ] || [ $ANDROID_SERIAL == HT4CTJT03670 ] || [ $ANDROID_SERIAL == HT49CJT00070 ]; then
23 echo "Not run because of localhost failures. 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"
38# We use Quick's image on target because optimizing's image is not compiled debuggable.
39image="-Ximage:/data/art-test/core.art"
40args=$@
41debuggee_args="-Xcompiler-option --compiler-backend=Optimizing -Xcompiler-option --debuggable"
42device_dir="--device-dir=/data/local/tmp"
43
44while true; do
45 if [[ "$1" == "--mode=host" ]]; then
46 art="art"
47 # We force generation of a new image to avoid build-time and run-time classpath differences.
48 image="-Ximage:/system/non/existent"
49 device_dir=""
50 shift
51 elif [[ $1 == -Ximage:* ]]; then
52 image="$1"
53 shift
54 elif [[ "$1" == "" ]]; then
55 break
56 else
57 shift
58 fi
59done
60
61# Run the tests using vogar.
62vogar --vm-command=$art \
63 --vm-arg $image \
Nicolas Geoffray9620b9d2015-03-30 12:28:26 +010064 --verbose \
Nicolas Geoffray96cd87a2015-03-26 16:48:29 +000065 $args \
66 $device_dir \
67 --vm-arg -Ximage-compiler-option \
68 --vm-arg --debuggable \
69 --timeout 600 \
70 --vm-arg -Djpda.settings.verbose=true \
71 --vm-arg -Djpda.settings.syncPort=34016 \
72 --vm-arg -Djpda.settings.debuggeeJavaPath="$art $image $debuggee_args" \
73 --classpath $test_jar \
74 --classpath $junit_jar \
75 --vm-arg -Xcompiler-option --vm-arg --compiler-backend=Optimizing \
76 --vm-arg -Xcompiler-option --vm-arg --debuggable \
77 org.apache.harmony.jpda.tests.share.AllTests