Nicolas Geoffray | b2e7e24 | 2014-11-28 14:24:28 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright (C) 2014 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_PRODUCT_OUT" ] ; then |
| 26 | JAVA_LIBRARIES=out/target/common/obj/JAVA_LIBRARIES |
| 27 | else |
| 28 | JAVA_LIBRARIES=${ANDROID_PRODUCT_OUT}/../../common/obj/JAVA_LIBRARIES |
| 29 | fi |
| 30 | |
Roland Levillain | 1c36188 | 2018-03-02 14:23:51 +0000 | [diff] [blame^] | 31 | android_root="/system" |
| 32 | if [ -n "$ART_TEST_ANDROID_ROOT" ]; then |
| 33 | android_root="$ART_TEST_ANDROID_ROOT" |
| 34 | fi |
| 35 | |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 36 | function classes_jar_path { |
| 37 | local var="$1" |
| 38 | local suffix="jar" |
| 39 | |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 40 | echo "${JAVA_LIBRARIES}/${var}_intermediates/classes.${suffix}" |
| 41 | } |
| 42 | |
Tobias Thierer | b3ec089 | 2016-08-03 16:13:04 +0100 | [diff] [blame] | 43 | function cparg { |
| 44 | for var |
| 45 | do |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 46 | printf -- "--classpath $(classes_jar_path "$var") "; |
Tobias Thierer | b3ec089 | 2016-08-03 16:13:04 +0100 | [diff] [blame] | 47 | done |
| 48 | } |
Wojciech Staszkiewicz | 08cf148 | 2015-05-21 17:31:38 +0100 | [diff] [blame] | 49 | |
Tobias Thierer | b3ec089 | 2016-08-03 16:13:04 +0100 | [diff] [blame] | 50 | DEPS="core-tests jsr166-tests mockito-target" |
Wojciech Staszkiewicz | 08cf148 | 2015-05-21 17:31:38 +0100 | [diff] [blame] | 51 | |
Tobias Thierer | b3ec089 | 2016-08-03 16:13:04 +0100 | [diff] [blame] | 52 | for lib in $DEPS |
| 53 | do |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 54 | if [[ ! -f "$(classes_jar_path "$lib")" ]]; then |
Tobias Thierer | b3ec089 | 2016-08-03 16:13:04 +0100 | [diff] [blame] | 55 | echo "${lib} is missing. Before running, you must run art/tools/buildbot-build.sh" |
| 56 | exit 1 |
| 57 | fi |
| 58 | done |
Nicolas Geoffray | b2e7e24 | 2014-11-28 14:24:28 +0000 | [diff] [blame] | 59 | |
Roland Levillain | afd6f9e | 2016-01-11 15:51:00 +0000 | [diff] [blame] | 60 | expectations="--expectations art/tools/libcore_failures.txt" |
Roland Levillain | afd6f9e | 2016-01-11 15:51:00 +0000 | [diff] [blame] | 61 | |
Nicolas Geoffray | f794ad7 | 2015-09-11 12:08:49 +0100 | [diff] [blame] | 62 | emulator="no" |
| 63 | if [ "$ANDROID_SERIAL" = "emulator-5554" ]; then |
| 64 | emulator="yes" |
| 65 | fi |
| 66 | |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 67 | # Use JIT compiling by default. |
| 68 | use_jit=true |
| 69 | |
Nicolas Geoffray | c3837e4 | 2014-12-03 11:30:26 +0000 | [diff] [blame] | 70 | # Packages that currently work correctly with the expectation files. |
Andreas Gampe | e166136 | 2017-11-08 16:42:14 -0800 | [diff] [blame] | 71 | working_packages=("libcore.dalvik.system" |
David Brazdil | 598b220 | 2015-02-24 10:12:06 +0000 | [diff] [blame] | 72 | "libcore.java.lang" |
Nicolas Geoffray | c3837e4 | 2014-12-03 11:30:26 +0000 | [diff] [blame] | 73 | "libcore.java.math" |
David Brazdil | 598b220 | 2015-02-24 10:12:06 +0000 | [diff] [blame] | 74 | "libcore.java.text" |
Nicolas Geoffray | 3cdf818 | 2014-12-01 10:12:15 +0000 | [diff] [blame] | 75 | "libcore.java.util" |
David Brazdil | 4cd7dfd | 2015-02-24 13:33:01 +0000 | [diff] [blame] | 76 | "libcore.javax.crypto" |
David Brazdil | 598b220 | 2015-02-24 10:12:06 +0000 | [diff] [blame] | 77 | "libcore.javax.security" |
| 78 | "libcore.javax.sql" |
| 79 | "libcore.javax.xml" |
Andreas Gampe | e166136 | 2017-11-08 16:42:14 -0800 | [diff] [blame] | 80 | "libcore.libcore.icu" |
| 81 | "libcore.libcore.io" |
| 82 | "libcore.libcore.net" |
| 83 | "libcore.libcore.reflect" |
| 84 | "libcore.libcore.util" |
Nicolas Geoffray | 3cdf818 | 2014-12-01 10:12:15 +0000 | [diff] [blame] | 85 | "org.apache.harmony.annotation" |
David Brazdil | 4cd7dfd | 2015-02-24 13:33:01 +0000 | [diff] [blame] | 86 | "org.apache.harmony.crypto" |
David Brazdil | e2f28ad | 2015-02-24 10:44:29 +0000 | [diff] [blame] | 87 | "org.apache.harmony.luni" |
| 88 | "org.apache.harmony.nio" |
Nicolas Geoffray | 3cdf818 | 2014-12-01 10:12:15 +0000 | [diff] [blame] | 89 | "org.apache.harmony.regex" |
David Brazdil | e2f28ad | 2015-02-24 10:44:29 +0000 | [diff] [blame] | 90 | "org.apache.harmony.testframework" |
| 91 | "org.apache.harmony.tests.java.io" |
Nicolas Geoffray | 3cdf818 | 2014-12-01 10:12:15 +0000 | [diff] [blame] | 92 | "org.apache.harmony.tests.java.lang" |
Nicolas Geoffray | c3837e4 | 2014-12-03 11:30:26 +0000 | [diff] [blame] | 93 | "org.apache.harmony.tests.java.math" |
Nicolas Geoffray | 3cdf818 | 2014-12-01 10:12:15 +0000 | [diff] [blame] | 94 | "org.apache.harmony.tests.java.util" |
David Brazdil | e2f28ad | 2015-02-24 10:44:29 +0000 | [diff] [blame] | 95 | "org.apache.harmony.tests.java.text" |
| 96 | "org.apache.harmony.tests.javax.security" |
Wojciech Staszkiewicz | 08cf148 | 2015-05-21 17:31:38 +0100 | [diff] [blame] | 97 | "tests.java.lang.String" |
| 98 | "jsr166") |
Nicolas Geoffray | b2e7e24 | 2014-11-28 14:24:28 +0000 | [diff] [blame] | 99 | |
Nicolas Geoffray | cdcd000 | 2015-10-31 14:47:36 +0000 | [diff] [blame] | 100 | # List of packages we could run, but don't have rights to revert |
| 101 | # changes in case of failures. |
| 102 | # "org.apache.harmony.security" |
| 103 | |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 104 | vogar_args=$@ |
Nicolas Geoffray | 622e2e2 | 2017-06-15 09:33:01 +0100 | [diff] [blame] | 105 | gcstress=false |
| 106 | debug=false |
| 107 | |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 108 | while true; do |
| 109 | if [[ "$1" == "--mode=device" ]]; then |
| 110 | vogar_args="$vogar_args --device-dir=/data/local/tmp" |
Roland Levillain | 1c36188 | 2018-03-02 14:23:51 +0000 | [diff] [blame^] | 111 | vogar_args="$vogar_args --vm-command=$android_root/bin/art" |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 112 | vogar_args="$vogar_args --vm-arg -Ximage:/data/art-test/core.art" |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 113 | shift |
| 114 | elif [[ "$1" == "--mode=host" ]]; then |
Andreas Gampe | 8994a04 | 2015-12-30 19:03:17 +0000 | [diff] [blame] | 115 | # We explicitly give a wrong path for the image, to ensure vogar |
| 116 | # will create a boot image with the default compiler. Note that |
| 117 | # giving an existing image on host does not work because of |
| 118 | # classpath/resources differences when compiling the boot image. |
| 119 | vogar_args="$vogar_args --vm-arg -Ximage:/non/existent/vogar.art" |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 120 | shift |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 121 | elif [[ "$1" == "--no-jit" ]]; then |
| 122 | # Remove the --no-jit from the arguments. |
| 123 | vogar_args=${vogar_args/$1} |
| 124 | use_jit=false |
| 125 | shift |
Nicolas Geoffray | 7f43791 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 126 | elif [[ "$1" == "--debug" ]]; then |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 127 | # Remove the --debug from the arguments. |
| 128 | vogar_args=${vogar_args/$1} |
Andreas Gampe | 1c5b42f | 2017-06-15 18:20:45 -0700 | [diff] [blame] | 129 | vogar_args="$vogar_args --vm-arg -XXlib:libartd.so --vm-arg -XX:SlowDebug=true" |
Nicolas Geoffray | 622e2e2 | 2017-06-15 09:33:01 +0100 | [diff] [blame] | 130 | debug=true |
| 131 | shift |
| 132 | elif [[ "$1" == "-Xgc:gcstress" ]]; then |
| 133 | gcstress=true |
Nicolas Geoffray | 9648a63 | 2015-06-15 14:35:01 +0100 | [diff] [blame] | 134 | shift |
| 135 | elif [[ "$1" == "" ]]; then |
| 136 | break |
| 137 | else |
| 138 | shift |
| 139 | fi |
| 140 | done |
| 141 | |
Nicolas Geoffray | 44368e8 | 2015-09-30 12:02:21 +0100 | [diff] [blame] | 142 | # Increase the timeout, as vogar cannot set individual test |
| 143 | # timeout when being asked to run packages, and some tests go above |
| 144 | # the default timeout. |
| 145 | vogar_args="$vogar_args --timeout 480" |
Nicolas Geoffray | f794ad7 | 2015-09-11 12:08:49 +0100 | [diff] [blame] | 146 | |
Neil Fuller | 239bdf6 | 2018-01-08 18:55:36 +0000 | [diff] [blame] | 147 | # set the toolchain to use. |
| 148 | vogar_args="$vogar_args --toolchain d8 --language CUR" |
Neil Fuller | b8300fc | 2016-02-10 13:09:10 +0000 | [diff] [blame] | 149 | |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 150 | # JIT settings. |
| 151 | if $use_jit; then |
Nicolas Geoffray | 49cda06 | 2017-04-21 13:08:25 +0100 | [diff] [blame] | 152 | vogar_args="$vogar_args --vm-arg -Xcompiler-option --vm-arg --compiler-filter=quicken" |
Roland Levillain | 5db109b | 2016-05-19 12:24:17 +0100 | [diff] [blame] | 153 | fi |
| 154 | vogar_args="$vogar_args --vm-arg -Xusejit:$use_jit" |
| 155 | |
Nicolas Geoffray | 5b455d3 | 2017-07-05 10:51:06 +0100 | [diff] [blame] | 156 | # gcstress may lead to timeouts, so we need dedicated expectations files for it. |
| 157 | if [[ $gcstress ]]; then |
| 158 | expectations="$expectations --expectations art/tools/libcore_gcstress_failures.txt" |
| 159 | if [[ $debug ]]; then |
| 160 | expectations="$expectations --expectations art/tools/libcore_gcstress_debug_failures.txt" |
| 161 | fi |
Nicolas Geoffray | 622e2e2 | 2017-06-15 09:33:01 +0100 | [diff] [blame] | 162 | fi |
| 163 | |
Nicolas Geoffray | b2e7e24 | 2014-11-28 14:24:28 +0000 | [diff] [blame] | 164 | # Run the tests using vogar. |
Nicolas Geoffray | 3cdf818 | 2014-12-01 10:12:15 +0000 | [diff] [blame] | 165 | echo "Running tests for the following test packages:" |
| 166 | echo ${working_packages[@]} | tr " " "\n" |
Nicolas Geoffray | 5898537 | 2017-11-09 14:38:02 +0000 | [diff] [blame] | 167 | vogar $vogar_args $expectations $(cparg $DEPS) ${working_packages[@]} |