Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1 | # Copyright (C) 2011 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | # |
| 15 | |
| 16 | LOCAL_PATH := $(call my-dir) |
| 17 | |
| 18 | include art/build/Android.common_test.mk |
| 19 | |
| 20 | # List of all tests of the form 003-omnibus-opcodes. |
| 21 | TEST_ART_RUN_TESTS := $(wildcard $(LOCAL_PATH)/[0-9]*) |
| 22 | TEST_ART_RUN_TESTS := $(subst $(LOCAL_PATH)/,, $(TEST_ART_RUN_TESTS)) |
| 23 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 24 | ######################################################################## |
| 25 | # The art-run-tests module, used to build all run-tests into an image. |
Alex Light | 9dcc457 | 2014-08-14 14:16:26 -0700 | [diff] [blame] | 26 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 27 | # The path where build only targets will be output, e.g. |
| 28 | # out/target/product/generic_x86_64/obj/PACKAGING/art-run-tests_intermediates/DATA |
Dan Willemsen | 7fb2c2c | 2016-08-01 22:58:31 -0700 | [diff] [blame] | 29 | art_run_tests_build_dir := $(call intermediates-dir-for,JAVA_LIBRARIES,art-run-tests)/DATA |
| 30 | art_run_tests_install_dir := $(call intermediates-dir-for,PACKAGING,art-run-tests)/DATA |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 31 | |
| 32 | # A generated list of prerequisites that call 'run-test --build-only', the actual prerequisite is |
| 33 | # an empty file touched in the intermediate directory. |
| 34 | TEST_ART_RUN_TEST_BUILD_RULES := |
| 35 | |
Nicolas Geoffray | 07f2bc1 | 2015-05-29 13:40:25 +0100 | [diff] [blame] | 36 | # Dependencies for actually running a run-test. |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 37 | TEST_ART_RUN_TEST_DEPENDENCIES := \ |
| 38 | $(DX) \ |
| 39 | $(HOST_OUT_EXECUTABLES)/jasmin \ |
| 40 | $(HOST_OUT_EXECUTABLES)/smali \ |
Sebastien Hertz | 2b763c3 | 2016-03-31 09:22:50 +0200 | [diff] [blame] | 41 | $(HOST_OUT_EXECUTABLES)/dexmerger \ |
| 42 | $(JACK) |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 43 | |
Sebastien Hertz | 2b763c3 | 2016-03-31 09:22:50 +0200 | [diff] [blame] | 44 | TEST_ART_RUN_TEST_ORDERONLY_DEPENDENCIES := setup-jack-server |
Nicolas Geoffray | 07f2bc1 | 2015-05-29 13:40:25 +0100 | [diff] [blame] | 45 | |
Hiroshi Yamauchi | 093f1b4 | 2015-07-14 12:20:30 -0700 | [diff] [blame] | 46 | ifeq ($(ART_TEST_DEBUG_GC),true) |
| 47 | ART_TEST_WITH_STRACE := true |
| 48 | endif |
| 49 | |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 50 | ifeq ($(ART_TEST_BISECTION),true) |
| 51 | # Need to keep rebuilding the test to bisection search it. |
| 52 | ART_TEST_RUN_TEST_NO_PREBUILD := true |
| 53 | ART_TEST_RUN_TEST_PREBUILD := false |
| 54 | # Bisection search writes to standard output. |
| 55 | ART_TEST_QUIET := false |
| 56 | endif |
| 57 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 58 | # Helper to create individual build targets for tests. Must be called with $(eval). |
| 59 | # $(1): the test number |
| 60 | define define-build-art-run-test |
Dan Willemsen | 7fb2c2c | 2016-08-01 22:58:31 -0700 | [diff] [blame] | 61 | dmart_target := $(art_run_tests_build_dir)/art-run-tests/$(1)/touch |
| 62 | dmart_install_target := $(art_run_tests_install_dir)/art-run-tests/$(1)/touch |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 63 | run_test_options = --build-only |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 64 | ifeq ($(ART_TEST_QUIET),true) |
| 65 | run_test_options += --quiet |
| 66 | endif |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 67 | $$(dmart_target): PRIVATE_RUN_TEST_OPTIONS := $$(run_test_options) |
Yohann Roussel | 05b9125 | 2015-12-09 12:02:46 +0100 | [diff] [blame] | 68 | $$(dmart_target): $(TEST_ART_RUN_TEST_DEPENDENCIES) $(TARGET_JACK_CLASSPATH_DEPENDENCIES) | $(TEST_ART_RUN_TEST_ORDERONLY_DEPENDENCIES) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 69 | $(hide) rm -rf $$(dir $$@) && mkdir -p $$(dir $$@) |
| 70 | $(hide) DX=$(abspath $(DX)) JASMIN=$(abspath $(HOST_OUT_EXECUTABLES)/jasmin) \ |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 71 | SMALI=$(abspath $(HOST_OUT_EXECUTABLES)/smali) \ |
| 72 | DXMERGER=$(abspath $(HOST_OUT_EXECUTABLES)/dexmerger) \ |
Yohann Roussel | cc6bb93 | 2016-01-19 23:29:29 +0100 | [diff] [blame] | 73 | JACK_VERSION=$(JACK_DEFAULT_VERSION) \ |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 74 | JACK=$(abspath $(JACK)) \ |
Yohann Roussel | aaa779a | 2016-01-19 17:07:18 +0100 | [diff] [blame] | 75 | JACK_VERSION=$(JACK_DEFAULT_VERSION) \ |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 76 | JACK_CLASSPATH=$(TARGET_JACK_CLASSPATH) \ |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 77 | $(LOCAL_PATH)/run-test $$(PRIVATE_RUN_TEST_OPTIONS) --output-path $$(abspath $$(dir $$@)) $(1) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 78 | $(hide) touch $$@ |
| 79 | |
Dan Willemsen | 7fb2c2c | 2016-08-01 22:58:31 -0700 | [diff] [blame] | 80 | $$(dmart_install_target): $$(dmart_target) |
| 81 | $(hide) rm -rf $$(dir $$@) && mkdir -p $$(dir $$@) |
| 82 | $(hide) cp $$(dir $$<)/* $$(dir $$@)/ |
| 83 | |
| 84 | TEST_ART_RUN_TEST_BUILD_RULES += $$(dmart_install_target) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 85 | dmart_target := |
Dan Willemsen | 7fb2c2c | 2016-08-01 22:58:31 -0700 | [diff] [blame] | 86 | dmart_install_target := |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 87 | run_test_options := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 88 | endef |
Ian Rogers | bf66bce | 2014-06-24 23:15:34 -0700 | [diff] [blame] | 89 | $(foreach test, $(TEST_ART_RUN_TESTS), $(eval $(call define-build-art-run-test,$(test)))) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 90 | |
| 91 | include $(CLEAR_VARS) |
| 92 | LOCAL_MODULE_TAGS := tests |
| 93 | LOCAL_MODULE := art-run-tests |
Ian Rogers | abbf242 | 2014-10-15 11:57:01 -0700 | [diff] [blame] | 94 | LOCAL_ADDITIONAL_DEPENDENCIES := $(TEST_ART_RUN_TEST_BUILD_RULES) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 95 | # The build system use this flag to pick up files generated by declare-make-art-run-test. |
Dan Willemsen | 7fb2c2c | 2016-08-01 22:58:31 -0700 | [diff] [blame] | 96 | LOCAL_PICKUP_FILES := $(art_run_tests_install_dir) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 97 | |
| 98 | include $(BUILD_PHONY_PACKAGE) |
| 99 | |
| 100 | # Clear temp vars. |
Dan Willemsen | 7fb2c2c | 2016-08-01 22:58:31 -0700 | [diff] [blame] | 101 | art_run_tests_build_dir := |
| 102 | art_run_tests_install_dir := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 103 | define-build-art-run-test := |
Ian Rogers | 8a14b75 | 2014-07-18 15:06:53 -0700 | [diff] [blame] | 104 | TEST_ART_RUN_TEST_BUILD_RULES := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 105 | |
| 106 | ######################################################################## |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 107 | # General rules to build and run a run-test. |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 108 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 109 | TARGET_TYPES := host target |
Nicolas Geoffray | 41bb331 | 2014-10-24 13:49:08 +0100 | [diff] [blame] | 110 | PREBUILD_TYPES := |
| 111 | ifeq ($(ART_TEST_RUN_TEST_PREBUILD),true) |
| 112 | PREBUILD_TYPES += prebuild |
| 113 | endif |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 114 | ifeq ($(ART_TEST_RUN_TEST_NO_PREBUILD),true) |
| 115 | PREBUILD_TYPES += no-prebuild |
| 116 | endif |
| 117 | ifeq ($(ART_TEST_RUN_TEST_NO_DEX2OAT),true) |
| 118 | PREBUILD_TYPES += no-dex2oat |
| 119 | endif |
| 120 | COMPILER_TYPES := |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 121 | ifeq ($(ART_TEST_INTERPRETER_ACCESS_CHECKS),true) |
Andreas Gampe | 825570c | 2015-07-26 10:26:03 -0700 | [diff] [blame] | 122 | COMPILER_TYPES += interp-ac |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 123 | endif |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 124 | ifeq ($(ART_TEST_INTERPRETER),true) |
| 125 | COMPILER_TYPES += interpreter |
| 126 | endif |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 127 | ifeq ($(ART_TEST_JIT),true) |
| 128 | COMPILER_TYPES += jit |
| 129 | endif |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 130 | OPTIMIZING_COMPILER_TYPES := |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 131 | ifeq ($(ART_TEST_OPTIMIZING),true) |
| 132 | COMPILER_TYPES += optimizing |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 133 | OPTIMIZING_COMPILER_TYPES += optimizing |
| 134 | endif |
| 135 | ifeq ($(ART_TEST_OPTIMIZING_GRAPH_COLOR),true) |
| 136 | COMPILER_TYPES += regalloc_gc |
| 137 | OPTIMIZING_COMPILER_TYPES += regalloc_gc |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 138 | endif |
| 139 | RELOCATE_TYPES := relocate |
| 140 | ifeq ($(ART_TEST_RUN_TEST_NO_RELOCATE),true) |
| 141 | RELOCATE_TYPES += no-relocate |
| 142 | endif |
| 143 | ifeq ($(ART_TEST_RUN_TEST_RELOCATE_NO_PATCHOAT),true) |
Andreas Gampe | b9aec2c | 2015-04-23 22:23:47 -0700 | [diff] [blame] | 144 | RELOCATE_TYPES += relocate-npatchoat |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 145 | endif |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 146 | TRACE_TYPES := ntrace |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 147 | ifeq ($(ART_TEST_TRACE),true) |
| 148 | TRACE_TYPES += trace |
| 149 | endif |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 150 | ifeq ($(ART_TEST_TRACE_STREAM),true) |
| 151 | TRACE_TYPES += stream |
| 152 | endif |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 153 | GC_TYPES := cms |
Alex Light | 992f1e7 | 2014-08-27 16:08:57 -0700 | [diff] [blame] | 154 | ifeq ($(ART_TEST_GC_STRESS),true) |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 155 | GC_TYPES += gcstress |
| 156 | endif |
Alex Light | 992f1e7 | 2014-08-27 16:08:57 -0700 | [diff] [blame] | 157 | ifeq ($(ART_TEST_GC_VERIFY),true) |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 158 | GC_TYPES += gcverify |
| 159 | endif |
| 160 | JNI_TYPES := checkjni |
| 161 | ifeq ($(ART_TEST_JNI_FORCECOPY),true) |
| 162 | JNI_TYPES += forcecopy |
| 163 | endif |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 164 | IMAGE_TYPES := picimage |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 165 | ifeq ($(ART_TEST_RUN_TEST_NO_IMAGE),true) |
| 166 | IMAGE_TYPES += no-image |
| 167 | endif |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 168 | ifeq ($(ART_TEST_RUN_TEST_MULTI_IMAGE),true) |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 169 | IMAGE_TYPES := multipicimage |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 170 | endif |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 171 | ifeq ($(ART_TEST_NPIC_IMAGE),true) |
| 172 | IMAGE_TYPES += npicimage |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 173 | ifeq ($(ART_TEST_RUN_TEST_MULTI_IMAGE),true) |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 174 | IMAGE_TYPES := multinpicimage |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 175 | endif |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 176 | endif |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 177 | PICTEST_TYPES := npictest |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 178 | ifeq ($(ART_TEST_PIC_TEST),true) |
| 179 | PICTEST_TYPES += pictest |
| 180 | endif |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 181 | RUN_TYPES := |
| 182 | ifeq ($(ART_TEST_RUN_TEST_DEBUG),true) |
| 183 | RUN_TYPES += debug |
| 184 | endif |
| 185 | ifeq ($(ART_TEST_RUN_TEST_NDEBUG),true) |
| 186 | RUN_TYPES += ndebug |
| 187 | endif |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 188 | DEBUGGABLE_TYPES := ndebuggable |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 189 | ifeq ($(ART_TEST_RUN_TEST_DEBUGGABLE),true) |
| 190 | DEBUGGABLE_TYPES += debuggable |
| 191 | endif |
Nicolas Geoffray | 41bb331 | 2014-10-24 13:49:08 +0100 | [diff] [blame] | 192 | ADDRESS_SIZES_TARGET := $(ART_PHONY_TEST_TARGET_SUFFIX) |
| 193 | ADDRESS_SIZES_HOST := $(ART_PHONY_TEST_HOST_SUFFIX) |
| 194 | ifeq ($(ART_TEST_RUN_TEST_2ND_ARCH),true) |
| 195 | ADDRESS_SIZES_TARGET += $(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
| 196 | ADDRESS_SIZES_HOST += $(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
| 197 | endif |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 198 | ALL_ADDRESS_SIZES := 64 32 |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 199 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 200 | # List all run test names with number arguments agreeing with the comment above. |
| 201 | define all-run-test-names |
| 202 | $(foreach target, $(1), \ |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 203 | $(foreach run-type, $(2), \ |
| 204 | $(foreach prebuild, $(3), \ |
| 205 | $(foreach compiler, $(4), \ |
| 206 | $(foreach relocate, $(5), \ |
| 207 | $(foreach trace, $(6), \ |
| 208 | $(foreach gc, $(7), \ |
| 209 | $(foreach jni, $(8), \ |
| 210 | $(foreach image, $(9), \ |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 211 | $(foreach pictest, $(10), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 212 | $(foreach debuggable, $(11), \ |
| 213 | $(foreach test, $(12), \ |
| 214 | $(foreach address_size, $(13), \ |
| 215 | test-art-$(target)-run-test-$(run-type)-$(prebuild)-$(compiler)-$(relocate)-$(trace)-$(gc)-$(jni)-$(image)-$(pictest)-$(debuggable)-$(test)$(address_size) \ |
| 216 | ))))))))))))) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 217 | endef # all-run-test-names |
| 218 | |
| 219 | # To generate a full list or tests: |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 220 | # $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES),$(COMPILER_TYPES), \ |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 221 | # $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \ |
Roland Levillain | d139bb7 | 2015-07-15 14:09:20 +0100 | [diff] [blame] | 222 | # $(PICTEST_TYPES),$(DEBUGGABLE_TYPES),$(TEST_ART_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 223 | |
| 224 | # Convert's a rule name to the form used in variables, e.g. no-relocate to NO_RELOCATE |
| 225 | define name-to-var |
| 226 | $(shell echo $(1) | tr '[:lower:]' '[:upper:]' | tr '-' '_') |
| 227 | endef # name-to-var |
| 228 | |
Hiroshi Yamauchi | 828b70c | 2016-12-16 13:09:19 -0800 | [diff] [blame] | 229 | # Disable 153-reference-stress temporarily until a fix arrives. b/33389022. |
Nicolas Geoffray | 751927e | 2016-12-21 08:58:27 +0000 | [diff] [blame] | 230 | # Disable 080-oom-fragmentation due to flakes. b/33795328 |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 231 | # Disable 497-inlining-and-class-loader and 542-unresolved-access-check until |
| 232 | # they are rewritten. These tests use a broken class loader that tries to |
| 233 | # register a dex file that's already registered with a different loader. |
| 234 | # b/34193123 |
Hiroshi Yamauchi | 828b70c | 2016-12-16 13:09:19 -0800 | [diff] [blame] | 235 | ART_TEST_RUN_TEST_SKIP += \ |
Nicolas Geoffray | 751927e | 2016-12-21 08:58:27 +0000 | [diff] [blame] | 236 | 153-reference-stress \ |
Vladimir Marko | 6bec91c | 2017-01-09 15:03:12 +0000 | [diff] [blame] | 237 | 080-oom-fragmentation \ |
| 238 | 497-inlining-and-class-loader \ |
| 239 | 542-unresolved-access-check |
Hiroshi Yamauchi | 828b70c | 2016-12-16 13:09:19 -0800 | [diff] [blame] | 240 | |
Alex Light | c07d66d | 2015-11-13 10:51:10 -0800 | [diff] [blame] | 241 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 242 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 243 | $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(ART_TEST_RUN_TEST_SKIP), $(ALL_ADDRESS_SIZES)) |
| 244 | |
Sebastien Hertz | fc07555 | 2016-02-25 18:50:23 +0100 | [diff] [blame] | 245 | |
Nicolas Geoffray | 76ec73a | 2016-06-22 13:13:59 +0000 | [diff] [blame] | 246 | # Disable 149-suspend-all-stress, its output is flaky (b/28988206). |
Hiroshi Yamauchi | 6cba74b | 2016-03-02 12:12:54 -0800 | [diff] [blame] | 247 | # Disable 577-profile-foreign-dex (b/27454772). |
Sebastien Hertz | fc07555 | 2016-02-25 18:50:23 +0100 | [diff] [blame] | 248 | TEST_ART_BROKEN_ALL_TARGET_TESTS := \ |
Nicolas Geoffray | 76ec73a | 2016-06-22 13:13:59 +0000 | [diff] [blame] | 249 | 149-suspend-all-stress \ |
Hiroshi Yamauchi | 6cba74b | 2016-03-02 12:12:54 -0800 | [diff] [blame] | 250 | 577-profile-foreign-dex \ |
Sebastien Hertz | fc07555 | 2016-02-25 18:50:23 +0100 | [diff] [blame] | 251 | |
| 252 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 253 | $(COMPILER_TYPES), $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 254 | $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_ALL_TARGET_TESTS), \ |
| 255 | $(ALL_ADDRESS_SIZES)) |
| 256 | |
| 257 | TEST_ART_BROKEN_ALL_TARGET_TESTS := |
| 258 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 259 | # Tests that are timing sensitive and flaky on heavily loaded systems. |
| 260 | TEST_ART_TIMING_SENSITIVE_RUN_TESTS := \ |
Nicolas Geoffray | 0b9112d | 2016-01-04 15:22:00 +0000 | [diff] [blame] | 261 | 002-sleep \ |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 262 | 053-wait-some \ |
Mathieu Chartier | e4a91bb | 2015-01-28 13:11:44 -0800 | [diff] [blame] | 263 | 055-enum-performance \ |
| 264 | 133-static-invoke-super |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 265 | |
Alex Light | dedcba2 | 2015-10-14 10:43:01 -0700 | [diff] [blame] | 266 | # disable timing sensitive tests on "dist" builds. |
| 267 | ifdef dist_goal |
| 268 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 269 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 270 | $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_TIMING_SENSITIVE_RUN_TESTS), $(ALL_ADDRESS_SIZES)) |
| 271 | endif |
| 272 | |
Richard Uhler | d7864d8 | 2016-04-14 13:31:30 -0700 | [diff] [blame] | 273 | # 147-stripped-dex-fallback isn't supported on device because --strip-dex |
| 274 | # requires the zip command. |
Vladimir Marko | 354efa6 | 2016-02-04 19:46:56 +0000 | [diff] [blame] | 275 | # 569-checker-pattern-replacement tests behaviour present only on host. |
| 276 | TEST_ART_BROKEN_TARGET_TESTS := \ |
Richard Uhler | d7864d8 | 2016-04-14 13:31:30 -0700 | [diff] [blame] | 277 | 147-stripped-dex-fallback \ |
Andreas Gampe | 5458f89 | 2016-10-24 15:50:49 -0700 | [diff] [blame] | 278 | 569-checker-pattern-replacement |
| 279 | |
| 280 | # These 9** tests are not supported in current form due to linker |
| 281 | # restrictions. See b/31681198 |
| 282 | TEST_ART_BROKEN_TARGET_TESTS += \ |
Andreas Gampe | 1a87b3b | 2017-01-18 09:55:54 -0800 | [diff] [blame] | 283 | 901-hello-ti-agent \ |
Nicolas Geoffray | fec2bdf | 2016-10-07 09:29:20 +0100 | [diff] [blame] | 284 | 902-hello-transformation \ |
Andreas Gampe | 27fa96c | 2016-10-07 15:05:24 -0700 | [diff] [blame] | 285 | 903-hello-tagging \ |
| 286 | 904-object-allocation \ |
Andreas Gampe | cc13b22 | 2016-10-10 19:09:09 -0700 | [diff] [blame] | 287 | 905-object-free \ |
Andreas Gampe | 8ccc8fc | 2016-10-12 13:09:03 -0700 | [diff] [blame] | 288 | 906-iterate-heap \ |
Andreas Gampe | 6467876 | 2016-10-14 19:05:06 -0700 | [diff] [blame] | 289 | 907-get-loaded-classes \ |
Andreas Gampe | 5458f89 | 2016-10-24 15:50:49 -0700 | [diff] [blame] | 290 | 908-gc-start-finish \ |
Leonard Mosescu | eb84221 | 2016-10-06 17:26:36 -0700 | [diff] [blame] | 291 | 909-attach-agent \ |
Andreas Gampe | 785359d | 2016-10-27 19:10:45 -0700 | [diff] [blame] | 292 | 910-methods \ |
Andreas Gampe | 80f5dba | 2016-10-28 19:38:49 -0700 | [diff] [blame] | 293 | 911-get-stack-trace \ |
Andreas Gampe | c8ba460 | 2016-10-28 19:42:20 -0700 | [diff] [blame] | 294 | 912-classes \ |
Andreas Gampe | 40f2f31 | 2016-10-31 19:32:53 -0700 | [diff] [blame] | 295 | 913-heaps \ |
Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 296 | 914-hello-obsolescence \ |
| 297 | 915-obsolete-2 \ |
| 298 | 916-obsolete-jit \ |
Alex Light | 200b9d7 | 2016-12-15 11:34:13 -0800 | [diff] [blame] | 299 | 917-fields-transformation \ |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 300 | 918-fields \ |
Alex Light | 32a2fba | 2017-01-06 16:58:19 +0000 | [diff] [blame] | 301 | 919-obsolete-fields \ |
Andreas Gampe | 50a4e49 | 2017-01-06 18:00:20 -0800 | [diff] [blame] | 302 | 920-objects \ |
Alex Light | 460d1b4 | 2017-01-10 15:37:17 +0000 | [diff] [blame] | 303 | 921-hello-failure \ |
Andreas Gampe | 1bdaf73 | 2017-01-09 19:21:06 -0800 | [diff] [blame] | 304 | 922-properties \ |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 305 | 923-monitors \ |
Andreas Gampe | af13ab9 | 2017-01-11 20:57:40 -0800 | [diff] [blame] | 306 | 924-threads \ |
Andreas Gampe | d18d9e2 | 2017-01-16 16:08:45 +0000 | [diff] [blame] | 307 | 925-threadgroups \ |
Alex Light | 0e69273 | 2017-01-10 15:00:05 -0800 | [diff] [blame] | 308 | 926-multi-obsolescence \ |
Andreas Gampe | 35bcf81 | 2017-01-13 16:24:17 -0800 | [diff] [blame] | 309 | 927-timers \ |
Andreas Gampe | 6f8e4f0 | 2017-01-16 18:18:14 -0800 | [diff] [blame] | 310 | 928-jni-table \ |
Andreas Gampe | ce7732b | 2017-01-17 15:50:26 -0800 | [diff] [blame] | 311 | 929-search \ |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 312 | 930-hello-retransform \ |
Andreas Gampe | 732b0ac | 2017-01-18 15:23:39 -0800 | [diff] [blame] | 313 | 931-agent-thread \ |
Alex Light | a7e38d8 | 2017-01-19 14:57:28 -0800 | [diff] [blame] | 314 | 932-transform-saves \ |
Vladimir Marko | 354efa6 | 2016-02-04 19:46:56 +0000 | [diff] [blame] | 315 | |
| 316 | ifneq (,$(filter target,$(TARGET_TYPES))) |
| 317 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 318 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 319 | $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_TARGET_TESTS), $(ALL_ADDRESS_SIZES)) |
| 320 | endif |
| 321 | |
| 322 | TEST_ART_BROKEN_TARGET_TESTS := |
| 323 | |
Nicolas Geoffray | ec00b7e | 2015-10-14 09:27:09 +0100 | [diff] [blame] | 324 | # Tests that require python3. |
| 325 | TEST_ART_PYTHON3_DEPENDENCY_RUN_TESTS := \ |
| 326 | 960-default-smali \ |
Alex Light | 5213626 | 2016-09-20 12:50:37 -0700 | [diff] [blame] | 327 | 961-default-iface-resolution-gen \ |
| 328 | 964-default-iface-init-gen \ |
| 329 | 968-default-partial-compile-gen \ |
Nicolas Geoffray | 812dd36 | 2016-01-14 22:21:14 +0000 | [diff] [blame] | 330 | 969-iface-super \ |
Alex Light | 5213626 | 2016-09-20 12:50:37 -0700 | [diff] [blame] | 331 | 970-iface-super-resolution-gen \ |
Nicolas Geoffray | a866ccf | 2016-01-19 09:17:25 +0000 | [diff] [blame] | 332 | 971-iface-super |
Nicolas Geoffray | ec00b7e | 2015-10-14 09:27:09 +0100 | [diff] [blame] | 333 | |
Alex Light | dedcba2 | 2015-10-14 10:43:01 -0700 | [diff] [blame] | 334 | # Check if we have python3 to run our tests. |
| 335 | ifeq ($(wildcard /usr/bin/python3),) |
| 336 | $(warning "No python3 found. Disabling tests: $(TEST_ART_PYTHON3_DEPENDENCY_RUN_TESTS)") |
Nicolas Geoffray | ec00b7e | 2015-10-14 09:27:09 +0100 | [diff] [blame] | 337 | |
Alex Light | dedcba2 | 2015-10-14 10:43:01 -0700 | [diff] [blame] | 338 | # Currently disable tests requiring python3 when it is not installed. |
Nicolas Geoffray | ec00b7e | 2015-10-14 09:27:09 +0100 | [diff] [blame] | 339 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 340 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 341 | $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_PYTHON3_DEPENDENCY_RUN_TESTS), $(ALL_ADDRESS_SIZES)) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 342 | endif |
| 343 | |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 344 | TEST_ART_TIMING_SENSITIVE_RUN_TESTS := |
| 345 | |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 346 | # Note 116-nodex2oat is not broken per-se it just doesn't (and isn't meant to) work with --prebuild. |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 347 | TEST_ART_BROKEN_PREBUILD_RUN_TESTS := \ |
Andreas Gampe | 3ad5d5e | 2015-02-03 18:26:55 -0800 | [diff] [blame] | 348 | 116-nodex2oat \ |
Jean Christophe Beyler | 24e04aa | 2014-09-12 12:03:25 -0700 | [diff] [blame] | 349 | 118-noimage-dex2oat \ |
| 350 | 134-nodex2oat-nofallback |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 351 | |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 352 | ifneq (,$(filter prebuild,$(PREBUILD_TYPES))) |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 353 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),prebuild, \ |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 354 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 355 | $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_PREBUILD_RUN_TESTS), $(ALL_ADDRESS_SIZES)) |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 356 | endif |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 357 | |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 358 | TEST_ART_BROKEN_PREBUILD_RUN_TESTS := |
| 359 | |
Andreas Gampe | 216848a | 2015-12-02 11:49:01 -0800 | [diff] [blame] | 360 | # 554-jit-profile-file is disabled because it needs a primary oat file to know what it should save. |
Nicolas Geoffray | cfa7239 | 2016-03-22 12:55:30 +0000 | [diff] [blame] | 361 | # 529 and 555: b/27784033 |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 362 | TEST_ART_BROKEN_NO_PREBUILD_TESTS := \ |
Andreas Gampe | 216848a | 2015-12-02 11:49:01 -0800 | [diff] [blame] | 363 | 117-nopatchoat \ |
Richard Uhler | 76f5cb6 | 2016-04-04 13:30:16 -0700 | [diff] [blame] | 364 | 147-stripped-dex-fallback \ |
Nicolas Geoffray | cfa7239 | 2016-03-22 12:55:30 +0000 | [diff] [blame] | 365 | 554-jit-profile-file \ |
| 366 | 529-checker-unresolved \ |
Andreas Gampe | 06b7c4d | 2016-06-27 14:55:02 -0700 | [diff] [blame] | 367 | 555-checker-regression-x86const \ |
| 368 | 608-checker-unresolved-lse |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 369 | |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 370 | ifneq (,$(filter no-prebuild,$(PREBUILD_TYPES))) |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 371 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),no-prebuild, \ |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 372 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 373 | $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_NO_PREBUILD_TESTS), $(ALL_ADDRESS_SIZES)) |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 374 | endif |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 375 | |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 376 | TEST_ART_BROKEN_NO_PREBUILD_TESTS := |
| 377 | |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 378 | # Note 117-nopatchoat is not broken per-se it just doesn't work (and isn't meant to) without |
| 379 | # --prebuild --relocate |
| 380 | TEST_ART_BROKEN_NO_RELOCATE_TESTS := \ |
Andreas Gampe | 3ad5d5e | 2015-02-03 18:26:55 -0800 | [diff] [blame] | 381 | 117-nopatchoat \ |
| 382 | 118-noimage-dex2oat \ |
Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 383 | 119-noimage-patchoat \ |
| 384 | 554-jit-profile-file |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 385 | |
| 386 | ifneq (,$(filter no-relocate,$(RELOCATE_TYPES))) |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 387 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 388 | $(COMPILER_TYPES), no-relocate,$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 389 | $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_NO_RELOCATE_TESTS), $(ALL_ADDRESS_SIZES)) |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 390 | endif |
| 391 | |
| 392 | TEST_ART_BROKEN_NO_RELOCATE_TESTS := |
| 393 | |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 394 | # Temporarily disable some broken tests when forcing access checks in interpreter b/22414682 |
Nicolas Geoffray | 51c17fa | 2016-11-25 15:56:12 +0000 | [diff] [blame] | 395 | # 629 requires compilation. |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 396 | TEST_ART_BROKEN_INTERPRETER_ACCESS_CHECK_TESTS := \ |
Nicolas Geoffray | 51c17fa | 2016-11-25 15:56:12 +0000 | [diff] [blame] | 397 | 137-cfi \ |
| 398 | 629-vdex-speed |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 399 | |
Andreas Gampe | 825570c | 2015-07-26 10:26:03 -0700 | [diff] [blame] | 400 | ifneq (,$(filter interp-ac,$(COMPILER_TYPES))) |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 401 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
Andreas Gampe | 825570c | 2015-07-26 10:26:03 -0700 | [diff] [blame] | 402 | interp-ac,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 403 | $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_INTERPRETER_ACCESS_CHECK_TESTS), $(ALL_ADDRESS_SIZES)) |
| 404 | endif |
| 405 | |
| 406 | TEST_ART_BROKEN_INTERPRETER_ACCESS_CHECK_TESTS := |
| 407 | |
Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 408 | # Tests that are broken with GC stress. |
Alex Light | 8d148c9 | 2015-10-20 10:23:32 -0700 | [diff] [blame] | 409 | # * 137-cfi needs to unwind a second forked process. We're using a primitive sleep to wait till we |
| 410 | # hope the second process got into the expected state. The slowness of gcstress makes this bad. |
Andreas Gampe | dc19815 | 2016-10-27 12:03:13 -0700 | [diff] [blame] | 411 | # * 908-gc-start-finish expects GCs only to be run at clear points. The reduced heap size makes |
Andreas Gampe | 8da6d03 | 2016-10-31 19:31:03 -0700 | [diff] [blame] | 412 | # this non-deterministic. Same for 913. |
Alex Light | 5213626 | 2016-09-20 12:50:37 -0700 | [diff] [blame] | 413 | # * 961-default-iface-resolution-gen and 964-default-iface-init-genare very long tests that often |
| 414 | # will take more than the timeout to run when gcstress is enabled. This is because gcstress |
| 415 | # slows down allocations significantly which these tests do a lot. |
Mathieu Chartier | eb19362 | 2015-06-27 15:42:27 -0700 | [diff] [blame] | 416 | TEST_ART_BROKEN_GCSTRESS_RUN_TESTS := \ |
Alex Light | 8d148c9 | 2015-10-20 10:23:32 -0700 | [diff] [blame] | 417 | 137-cfi \ |
Andreas Gampe | dc19815 | 2016-10-27 12:03:13 -0700 | [diff] [blame] | 418 | 908-gc-start-finish \ |
Andreas Gampe | 8da6d03 | 2016-10-31 19:31:03 -0700 | [diff] [blame] | 419 | 913-heaps \ |
Alex Light | 5213626 | 2016-09-20 12:50:37 -0700 | [diff] [blame] | 420 | 961-default-iface-resolution-gen \ |
Roland Levillain | 7fa7cf5 | 2016-11-04 14:10:29 +0000 | [diff] [blame] | 421 | 964-default-iface-init-gen |
Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 422 | |
| 423 | ifneq (,$(filter gcstress,$(GC_TYPES))) |
| 424 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 425 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),gcstress,$(JNI_TYPES), \ |
| 426 | $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_GCSTRESS_RUN_TESTS), $(ALL_ADDRESS_SIZES)) |
| 427 | endif |
| 428 | |
| 429 | TEST_ART_BROKEN_GCSTRESS_RUN_TESTS := |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 430 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 431 | # 115-native-bridge setup is complicated. Need to implement it correctly for the target. |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 432 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES),$(COMPILER_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 433 | $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), 115-native-bridge, \ |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 434 | $(ALL_ADDRESS_SIZES)) |
| 435 | |
Andreas Gampe | 3a91309 | 2015-01-10 00:26:17 -0800 | [diff] [blame] | 436 | # 130-hprof dumps the heap and runs hprof-conv to check whether the file is somewhat readable. This |
| 437 | # is only possible on the host. |
| 438 | # TODO: Turn off all the other combinations, this is more about testing actual ART code. A gtest is |
| 439 | # very hard to write here, as (for a complete test) JDWP must be set up. |
| 440 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 441 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 442 | $(PICTEST_TYPES),$(DEBUGGABLE_TYPES),130-hprof,$(ALL_ADDRESS_SIZES)) |
Andreas Gampe | 3a91309 | 2015-01-10 00:26:17 -0800 | [diff] [blame] | 443 | |
Andreas Gampe | 94329d3 | 2015-04-24 20:22:06 -0700 | [diff] [blame] | 444 | # 131 is an old test. The functionality has been implemented at an earlier stage and is checked |
Mathieu Chartier | 80b37b7 | 2015-10-12 18:13:39 -0700 | [diff] [blame] | 445 | # in tests 138. Blacklisted for debug builds since these builds have duplicate classes checks which |
| 446 | # punt to interpreter. |
| 447 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),debug,$(PREBUILD_TYPES), \ |
Andreas Gampe | 94329d3 | 2015-04-24 20:22:06 -0700 | [diff] [blame] | 448 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \ |
| 449 | $(PICTEST_TYPES),$(DEBUGGABLE_TYPES),131-structural-change,$(ALL_ADDRESS_SIZES)) |
| 450 | |
Mathieu Chartier | 80b37b7 | 2015-10-12 18:13:39 -0700 | [diff] [blame] | 451 | # 138-duplicate-classes-check. Turned on for debug builds since debug builds have duplicate classes |
| 452 | # checks enabled, b/2133391. |
| 453 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),ndebug,$(PREBUILD_TYPES), \ |
Andreas Gampe | 69b5d8f | 2015-06-03 15:43:16 -0700 | [diff] [blame] | 454 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \ |
| 455 | $(PICTEST_TYPES),$(DEBUGGABLE_TYPES),138-duplicate-classes-check,$(ALL_ADDRESS_SIZES)) |
| 456 | |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 457 | # All these tests check that we have sane behavior if we don't have a patchoat or dex2oat. |
| 458 | # Therefore we shouldn't run them in situations where we actually don't have these since they |
| 459 | # explicitly test for them. These all also assume we have an image. |
Richard Uhler | 1b85354 | 2016-04-15 12:16:45 -0700 | [diff] [blame] | 460 | # 147-stripped-dex-fallback is disabled because it requires --prebuild. |
Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 461 | # 554-jit-profile-file is disabled because it needs a primary oat file to know what it should save. |
Nicolas Geoffray | 1d0ae3f | 2016-12-06 13:40:16 +0000 | [diff] [blame] | 462 | # 629-vdex-speed requires compiled code. |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 463 | TEST_ART_BROKEN_FALLBACK_RUN_TESTS := \ |
| 464 | 116-nodex2oat \ |
| 465 | 117-nopatchoat \ |
| 466 | 118-noimage-dex2oat \ |
Andreas Gampe | b9aec2c | 2015-04-23 22:23:47 -0700 | [diff] [blame] | 467 | 119-noimage-patchoat \ |
Andreas Gampe | e1bbed2 | 2015-05-20 13:55:00 -0700 | [diff] [blame] | 468 | 137-cfi \ |
Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 469 | 138-duplicate-classes-check2 \ |
Richard Uhler | 1b85354 | 2016-04-15 12:16:45 -0700 | [diff] [blame] | 470 | 147-stripped-dex-fallback \ |
Nicolas Geoffray | 1d0ae3f | 2016-12-06 13:40:16 +0000 | [diff] [blame] | 471 | 554-jit-profile-file \ |
| 472 | 629-vdex-speed |
Andreas Gampe | b9aec2c | 2015-04-23 22:23:47 -0700 | [diff] [blame] | 473 | |
| 474 | # This test fails without an image. |
Nicolas Geoffray | 4638106 | 2017-01-18 11:08:02 +0000 | [diff] [blame] | 475 | # 018, 961, 964 often time out. b/34369284 |
Andreas Gampe | b9aec2c | 2015-04-23 22:23:47 -0700 | [diff] [blame] | 476 | TEST_ART_BROKEN_NO_IMAGE_RUN_TESTS := \ |
Andreas Gampe | e1bbed2 | 2015-05-20 13:55:00 -0700 | [diff] [blame] | 477 | 137-cfi \ |
Alex Light | 4dbcfd6 | 2016-12-12 10:39:50 -0800 | [diff] [blame] | 478 | 138-duplicate-classes-check \ |
Nicolas Geoffray | 4638106 | 2017-01-18 11:08:02 +0000 | [diff] [blame] | 479 | 018-stack-overflow \ |
| 480 | 961-default-iface-resolution-gen \ |
Alex Light | 4dbcfd6 | 2016-12-12 10:39:50 -0800 | [diff] [blame] | 481 | 964-default-iface-init |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 482 | |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 483 | ifneq (,$(filter no-dex2oat,$(PREBUILD_TYPES))) |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 484 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),no-dex2oat, \ |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 485 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 486 | $(PICTEST_TYPES),$(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_FALLBACK_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 487 | endif |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 488 | |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 489 | |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 490 | ifneq (,$(filter no-image,$(IMAGE_TYPES))) |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 491 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 492 | $(COMPILER_TYPES), $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),no-image, \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 493 | $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_FALLBACK_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
Andreas Gampe | b9aec2c | 2015-04-23 22:23:47 -0700 | [diff] [blame] | 494 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 495 | $(COMPILER_TYPES), $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),no-image, \ |
| 496 | $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_NO_IMAGE_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 497 | endif |
| 498 | |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 499 | ifneq (,$(filter relocate-npatchoat,$(RELOCATE_TYPES))) |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 500 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 501 | $(COMPILER_TYPES), relocate-npatchoat,$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 502 | $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_FALLBACK_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
Ian Rogers | 40e1912 | 2014-09-02 15:59:28 -0700 | [diff] [blame] | 503 | endif |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 504 | |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 505 | TEST_ART_BROKEN_FALLBACK_RUN_TESTS := |
| 506 | |
Andreas Gampe | e1bbed2 | 2015-05-20 13:55:00 -0700 | [diff] [blame] | 507 | # 137: |
| 508 | # This test unrolls and expects managed frames, but tracing means we run the interpreter. |
Nicolas Geoffray | d9bc433 | 2016-02-05 23:32:25 +0000 | [diff] [blame] | 509 | # 802 and 570-checker-osr: |
Andreas Gampe | 9cb65bc | 2015-02-18 17:08:27 -0800 | [diff] [blame] | 510 | # This test dynamically enables tracing to force a deoptimization. This makes the test meaningless |
| 511 | # when already tracing, and writes an error message that we do not want to check for. |
Hiroshi Yamauchi | c0ada4a | 2016-10-24 17:10:12 -0700 | [diff] [blame] | 512 | # 130 occasional timeout b/32383962. |
Nicolas Geoffray | 51c17fa | 2016-11-25 15:56:12 +0000 | [diff] [blame] | 513 | # 629 requires compilation. |
Andreas Gampe | 9cb65bc | 2015-02-18 17:08:27 -0800 | [diff] [blame] | 514 | TEST_ART_BROKEN_TRACING_RUN_TESTS := \ |
Mathieu Chartier | 7778b88 | 2015-10-05 16:41:10 -0700 | [diff] [blame] | 515 | 087-gc-after-link \ |
Hiroshi Yamauchi | c0ada4a | 2016-10-24 17:10:12 -0700 | [diff] [blame] | 516 | 130-hprof \ |
Andreas Gampe | e1bbed2 | 2015-05-20 13:55:00 -0700 | [diff] [blame] | 517 | 137-cfi \ |
Mathieu Chartier | 42fbf49 | 2015-09-25 17:12:48 -0700 | [diff] [blame] | 518 | 141-class-unload \ |
Nicolas Geoffray | d9bc433 | 2016-02-05 23:32:25 +0000 | [diff] [blame] | 519 | 570-checker-osr \ |
Nicolas Geoffray | 51c17fa | 2016-11-25 15:56:12 +0000 | [diff] [blame] | 520 | 629-vdex-speed \ |
Andreas Gampe | 9cb65bc | 2015-02-18 17:08:27 -0800 | [diff] [blame] | 521 | 802-deoptimization |
| 522 | |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 523 | ifneq (,$(filter trace stream,$(TRACE_TYPES))) |
Andreas Gampe | 9cb65bc | 2015-02-18 17:08:27 -0800 | [diff] [blame] | 524 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 525 | $(COMPILER_TYPES),$(RELOCATE_TYPES),trace stream,$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 526 | $(PICTEST_TYPES),$(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_TRACING_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
Andreas Gampe | 9cb65bc | 2015-02-18 17:08:27 -0800 | [diff] [blame] | 527 | endif |
| 528 | |
Andreas Gampe | 940caa7 | 2016-12-14 13:09:14 -0800 | [diff] [blame] | 529 | TEST_ART_BROKEN_TRACING_RUN_TESTS := |
| 530 | |
| 531 | # These tests expect JIT compilation, which is suppressed when tracing. |
| 532 | TEST_ART_BROKEN_JIT_TRACING_RUN_TESTS := \ |
| 533 | 604-hot-static-interface \ |
| 534 | 612-jit-dex-cache \ |
| 535 | 613-inlining-dex-cache \ |
| 536 | 616-cha \ |
| 537 | 626-set-resolved-string \ |
| 538 | |
| 539 | ifneq (,$(filter trace stream,$(TRACE_TYPES))) |
| 540 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 541 | jit,$(RELOCATE_TYPES),trace stream,$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \ |
| 542 | $(PICTEST_TYPES),$(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_JIT_TRACING_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 543 | endif |
| 544 | |
| 545 | TEST_ART_BROKEN_JIT_TRACING_RUN_TESTS := |
| 546 | |
Andreas Gampe | e1bbed2 | 2015-05-20 13:55:00 -0700 | [diff] [blame] | 547 | # Known broken tests for the interpreter. |
| 548 | # CFI unwinding expects managed frames. |
Nicolas Geoffray | 51c17fa | 2016-11-25 15:56:12 +0000 | [diff] [blame] | 549 | # 629 requires compilation. |
Andreas Gampe | e1bbed2 | 2015-05-20 13:55:00 -0700 | [diff] [blame] | 550 | TEST_ART_BROKEN_INTERPRETER_RUN_TESTS := \ |
Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 551 | 137-cfi \ |
Nicolas Geoffray | 51c17fa | 2016-11-25 15:56:12 +0000 | [diff] [blame] | 552 | 554-jit-profile-file \ |
| 553 | 629-vdex-speed |
Andreas Gampe | e1bbed2 | 2015-05-20 13:55:00 -0700 | [diff] [blame] | 554 | |
| 555 | ifneq (,$(filter interpreter,$(COMPILER_TYPES))) |
| 556 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 557 | interpreter,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 558 | $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES),$(TEST_ART_BROKEN_INTERPRETER_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 559 | endif |
| 560 | |
| 561 | TEST_ART_BROKEN_INTERPRETER_RUN_TESTS := |
| 562 | |
Andreas Gampe | aab9f73 | 2015-05-20 14:50:06 -0700 | [diff] [blame] | 563 | # Known broken tests for the JIT. |
| 564 | # CFI unwinding expects managed frames, and the test does not iterate enough to even compile. JIT |
| 565 | # also uses Generic JNI instead of the JNI compiler. |
Andreas Gampe | 5d03701 | 2016-10-12 18:21:41 -0700 | [diff] [blame] | 566 | # Test 906 iterates the heap filtering with different options. No instances should be created |
| 567 | # between those runs to be able to have precise checks. |
Nicolas Geoffray | 2f01b4d | 2016-11-11 11:45:59 +0000 | [diff] [blame] | 568 | # Test 902 hits races with the JIT compiler. b/32821077 |
Nicolas Geoffray | 51c17fa | 2016-11-25 15:56:12 +0000 | [diff] [blame] | 569 | # Test 629 requires compilation. |
Alex Light | 32a2fba | 2017-01-06 16:58:19 +0000 | [diff] [blame] | 570 | # Test 914, 915, 917, & 919 are very sensitive to the exact state of the stack, |
Alex Light | b83c748 | 2016-12-20 16:15:45 -0800 | [diff] [blame] | 571 | # including the jit-inserted runtime frames. This causes them to be somewhat |
| 572 | # flaky as JIT tests. This should be fixed once b/33630159 or b/33616143 are |
| 573 | # resolved but until then just disable them. Test 916 already checks this |
| 574 | # feature for JIT use cases in a way that is resilient to the jit frames. |
Andreas Gampe | aab9f73 | 2015-05-20 14:50:06 -0700 | [diff] [blame] | 575 | TEST_ART_BROKEN_JIT_RUN_TESTS := \ |
Andreas Gampe | 5d03701 | 2016-10-12 18:21:41 -0700 | [diff] [blame] | 576 | 137-cfi \ |
Nicolas Geoffray | 51c17fa | 2016-11-25 15:56:12 +0000 | [diff] [blame] | 577 | 629-vdex-speed \ |
Nicolas Geoffray | 2f01b4d | 2016-11-11 11:45:59 +0000 | [diff] [blame] | 578 | 902-hello-transformation \ |
Nicolas Geoffray | c2fe891 | 2016-10-19 09:32:10 +0100 | [diff] [blame] | 579 | 904-object-allocation \ |
Andreas Gampe | 5d03701 | 2016-10-12 18:21:41 -0700 | [diff] [blame] | 580 | 906-iterate-heap \ |
Alex Light | b83c748 | 2016-12-20 16:15:45 -0800 | [diff] [blame] | 581 | 914-hello-obsolescence \ |
| 582 | 915-obsolete-2 \ |
| 583 | 917-fields-transformation \ |
Alex Light | 32a2fba | 2017-01-06 16:58:19 +0000 | [diff] [blame] | 584 | 919-obsolete-fields \ |
Alex Light | 0e69273 | 2017-01-10 15:00:05 -0800 | [diff] [blame] | 585 | 926-multi-obsolescence \ |
Andreas Gampe | aab9f73 | 2015-05-20 14:50:06 -0700 | [diff] [blame] | 586 | |
| 587 | ifneq (,$(filter jit,$(COMPILER_TYPES))) |
| 588 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 589 | jit,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 590 | $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES),$(TEST_ART_BROKEN_JIT_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 591 | endif |
| 592 | |
| 593 | TEST_ART_BROKEN_JIT_RUN_TESTS := |
| 594 | |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 595 | # Known broken tests for the graph coloring register allocator. |
| 596 | # These tests were based on the linear scan allocator, which makes different decisions than |
| 597 | # the graph coloring allocator. (These attempt to test for code quality, not correctness.) |
| 598 | TEST_ART_BROKEN_OPTIMIZING_GRAPH_COLOR := \ |
| 599 | 570-checker-select \ |
| 600 | 484-checker-register-hints |
| 601 | |
| 602 | ifneq (,$(filter regalloc_gc,$(COMPILER_TYPES))) |
| 603 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 604 | regalloc_gc,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 605 | $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
| 606 | $(TEST_ART_BROKEN_OPTIMIZING_GRAPH_COLOR),$(ALL_ADDRESS_SIZES)) |
| 607 | endif |
| 608 | |
David Brazdil | 73b6cdf | 2015-09-30 11:47:35 +0100 | [diff] [blame] | 609 | # Known broken tests for the mips32 optimizing compiler backend. |
| 610 | TEST_ART_BROKEN_OPTIMIZING_MIPS_RUN_TESTS := \ |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 611 | |
David Brazdil | 73b6cdf | 2015-09-30 11:47:35 +0100 | [diff] [blame] | 612 | ifeq (mips,$(TARGET_ARCH)) |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 613 | ifneq (,$(filter $(OPTIMIZING_COMPILER_TYPES),$(COMPILER_TYPES))) |
David Brazdil | 73b6cdf | 2015-09-30 11:47:35 +0100 | [diff] [blame] | 614 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES), \ |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 615 | $(OPTIMIZING_COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
David Brazdil | 73b6cdf | 2015-09-30 11:47:35 +0100 | [diff] [blame] | 616 | $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
| 617 | $(TEST_ART_BROKEN_OPTIMIZING_MIPS_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 618 | endif |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 619 | endif |
| 620 | |
David Brazdil | 73b6cdf | 2015-09-30 11:47:35 +0100 | [diff] [blame] | 621 | TEST_ART_BROKEN_OPTIMIZING_MIPS_RUN_TESTS := |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 622 | |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 623 | # Known broken tests for the mips64 optimizing compiler backend. |
| 624 | TEST_ART_BROKEN_OPTIMIZING_MIPS64_RUN_TESTS := \ |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 625 | |
| 626 | ifeq (mips64,$(TARGET_ARCH)) |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 627 | ifneq (,$(filter $(OPTIMIZING_COMPILER_TYPES),$(COMPILER_TYPES))) |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 628 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES), \ |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 629 | $(OPTIMIZING_COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 630 | $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
| 631 | $(TEST_ART_BROKEN_OPTIMIZING_MIPS64_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 632 | endif |
| 633 | endif |
| 634 | |
| 635 | TEST_ART_BROKEN_OPTIMIZING_MIPS64_RUN_TESTS := |
| 636 | |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 637 | # Tests that should fail when the optimizing compiler compiles them non-debuggable. |
| 638 | TEST_ART_BROKEN_OPTIMIZING_NONDEBUGGABLE_RUN_TESTS := \ |
Nicolas Geoffray | 915b9d0 | 2015-03-11 15:11:19 +0000 | [diff] [blame] | 639 | 454-get-vreg \ |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 640 | 457-regs \ |
| 641 | |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 642 | ifneq (,$(filter $(OPTIMIZING_COMPILER_TYPES),$(COMPILER_TYPES))) |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 643 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 644 | $(OPTIMIZING_COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 645 | $(IMAGE_TYPES),$(PICTEST_TYPES),ndebuggable,$(TEST_ART_BROKEN_OPTIMIZING_NONDEBUGGABLE_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 646 | endif |
| 647 | |
| 648 | TEST_ART_BROKEN_OPTIMIZING_NONDEBUGGABLE_RUN_TESTS := |
| 649 | |
Nicolas Geoffray | e50b8d2 | 2015-03-13 08:57:42 +0000 | [diff] [blame] | 650 | # Tests that should fail when the optimizing compiler compiles them debuggable. |
| 651 | TEST_ART_BROKEN_OPTIMIZING_DEBUGGABLE_RUN_TESTS := \ |
Nicolas Geoffray | e50b8d2 | 2015-03-13 08:57:42 +0000 | [diff] [blame] | 652 | |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 653 | ifneq (,$(filter $(OPTIMIZING_COMPILER_TYPES),$(COMPILER_TYPES))) |
Nicolas Geoffray | e50b8d2 | 2015-03-13 08:57:42 +0000 | [diff] [blame] | 654 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 655 | $(OPTIMIZING_COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
Nicolas Geoffray | e50b8d2 | 2015-03-13 08:57:42 +0000 | [diff] [blame] | 656 | $(IMAGE_TYPES),$(PICTEST_TYPES),debuggable,$(TEST_ART_BROKEN_OPTIMIZING_DEBUGGABLE_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 657 | endif |
| 658 | |
| 659 | TEST_ART_BROKEN_OPTIMIZING_DEBUGGABLE_RUN_TESTS := |
| 660 | |
Roland Levillain | b0659e6 | 2016-01-26 14:05:42 +0000 | [diff] [blame] | 661 | # Tests that should fail in the read barrier configuration with the interpreter. |
Hiroshi Yamauchi | 6c73836 | 2016-03-17 14:57:58 -0700 | [diff] [blame] | 662 | TEST_ART_BROKEN_INTERPRETER_READ_BARRIER_RUN_TESTS := |
Hiroshi Yamauchi | 1d85823 | 2015-05-05 13:36:39 -0700 | [diff] [blame] | 663 | |
Roland Levillain | 78ebe4a | 2016-01-26 10:47:42 +0000 | [diff] [blame] | 664 | # Tests that should fail in the read barrier configuration with the Optimizing compiler (AOT). |
Roland Levillain | eb26e28 | 2016-11-23 14:29:49 +0000 | [diff] [blame] | 665 | TEST_ART_BROKEN_OPTIMIZING_READ_BARRIER_RUN_TESTS := |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 666 | |
Roland Levillain | 560297f | 2016-01-29 11:37:48 +0000 | [diff] [blame] | 667 | # Tests that should fail in the read barrier configuration with JIT (Optimizing compiler). |
Hiroshi Yamauchi | 5c0a4af | 2016-03-17 14:57:25 -0700 | [diff] [blame] | 668 | TEST_ART_BROKEN_JIT_READ_BARRIER_RUN_TESTS := |
Roland Levillain | 3c36f66 | 2016-01-14 12:40:41 +0000 | [diff] [blame] | 669 | |
Roland Levillain | 48e2340 | 2016-08-22 13:59:21 +0100 | [diff] [blame] | 670 | # Tests failing in non-Baker read barrier configurations with the Optimizing compiler (AOT). |
| 671 | # 537: Expects an array copy to be intrinsified, but calling-on-slowpath intrinsics are not yet |
| 672 | # handled in non-Baker read barrier configurations. |
| 673 | TEST_ART_BROKEN_OPTIMIZING_NON_BAKER_READ_BARRIER_RUN_TESTS := \ |
| 674 | 537-checker-arraycopy |
| 675 | |
| 676 | # Tests failing in non-Baker read barrier configurations with JIT (Optimizing compiler). |
| 677 | # 537: Expects an array copy to be intrinsified, but calling-on-slowpath intrinsics are not yet |
| 678 | # handled in non-Baker read barrier configurations. |
| 679 | TEST_ART_BROKEN_JIT_NON_BAKER_READ_BARRIER_RUN_TESTS := \ |
| 680 | 537-checker-arraycopy |
| 681 | |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 682 | ifeq ($(ART_USE_READ_BARRIER),true) |
Roland Levillain | b0659e6 | 2016-01-26 14:05:42 +0000 | [diff] [blame] | 683 | ifneq (,$(filter interpreter,$(COMPILER_TYPES))) |
| 684 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \ |
| 685 | $(PREBUILD_TYPES),interpreter,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES), \ |
| 686 | $(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
| 687 | $(TEST_ART_BROKEN_INTERPRETER_READ_BARRIER_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 688 | endif |
| 689 | |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 690 | ifneq (,$(filter $(OPTIMIZING_COMPILER_TYPES),$(COMPILER_TYPES))) |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 691 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \ |
Roland Levillain | 48e2340 | 2016-08-22 13:59:21 +0100 | [diff] [blame] | 692 | $(PREBUILD_TYPES),$(OPTIMIZING_COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES), \ |
| 693 | $(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 694 | $(TEST_ART_BROKEN_OPTIMIZING_READ_BARRIER_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
Roland Levillain | 48e2340 | 2016-08-22 13:59:21 +0100 | [diff] [blame] | 695 | ifneq ($(ART_READ_BARRIER_TYPE),BAKER) |
| 696 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \ |
| 697 | $(PREBUILD_TYPES),$(OPTIMIZING_COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES), \ |
| 698 | $(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
| 699 | $(TEST_ART_BROKEN_OPTIMIZING_NON_BAKER_READ_BARRIER_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 700 | endif |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 701 | endif |
Roland Levillain | 3c36f66 | 2016-01-14 12:40:41 +0000 | [diff] [blame] | 702 | |
| 703 | ifneq (,$(filter jit,$(COMPILER_TYPES))) |
| 704 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \ |
| 705 | $(PREBUILD_TYPES),jit,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES), \ |
| 706 | $(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
| 707 | $(TEST_ART_BROKEN_JIT_READ_BARRIER_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
Roland Levillain | 48e2340 | 2016-08-22 13:59:21 +0100 | [diff] [blame] | 708 | ifneq ($(ART_READ_BARRIER_TYPE),BAKER) |
| 709 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \ |
| 710 | $(PREBUILD_TYPES),jit,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES), \ |
| 711 | $(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
| 712 | $(TEST_ART_BROKEN_JIT_NON_BAKER_READ_BARRIER_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 713 | endif |
Roland Levillain | 3c36f66 | 2016-01-14 12:40:41 +0000 | [diff] [blame] | 714 | endif |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 715 | endif |
| 716 | |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 717 | TEST_ART_BROKEN_OPTIMIZING_READ_BARRIER_RUN_TESTS := |
Roland Levillain | 3c36f66 | 2016-01-14 12:40:41 +0000 | [diff] [blame] | 718 | TEST_ART_BROKEN_JIT_READ_BARRIER_RUN_TESTS := |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 719 | |
Alex Light | 2e960a0 | 2016-05-03 15:01:06 -0700 | [diff] [blame] | 720 | TEST_ART_BROKEN_NPIC_RUN_TESTS := 596-app-images |
| 721 | ifneq (,$(filter npictest,$(PICTEST_TYPES))) |
| 722 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 723 | ${COMPILER_TYPES},$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 724 | $(IMAGE_TYPES),npictest,$(DEBUGGABLE_TYPES),$(TEST_ART_BROKEN_NPIC_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 725 | endif |
| 726 | |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 727 | # Tests that should fail in the heap poisoning configuration with the Optimizing compiler. |
| 728 | # 055: Exceeds run time limits due to heap poisoning instrumentation (on ARM and ARM64 devices). |
| 729 | TEST_ART_BROKEN_OPTIMIZING_HEAP_POISONING_RUN_TESTS := \ |
| 730 | 055-enum-performance |
| 731 | |
Andreas Gampe | 4437219 | 2015-05-21 10:01:42 -0700 | [diff] [blame] | 732 | ifeq ($(ART_HEAP_POISONING),true) |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 733 | ifneq (,$(filter $(OPTIMIZING_COMPILER_TYPES),$(COMPILER_TYPES))) |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 734 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \ |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 735 | $(PREBUILD_TYPES),$(OPTIMIZING_COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
Roland Levillain | 4d02711 | 2015-07-01 15:41:14 +0100 | [diff] [blame] | 736 | $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
| 737 | $(TEST_ART_BROKEN_OPTIMIZING_HEAP_POISONING_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 738 | endif |
Andreas Gampe | 4437219 | 2015-05-21 10:01:42 -0700 | [diff] [blame] | 739 | endif |
| 740 | |
Roland Levillain | e217fee | 2015-12-16 14:21:33 +0000 | [diff] [blame] | 741 | TEST_ART_BROKEN_OPTIMIZING_HEAP_POISONING_RUN_TESTS := |
Andreas Gampe | 4437219 | 2015-05-21 10:01:42 -0700 | [diff] [blame] | 742 | |
Andreas Gampe | c4baad2 | 2017-01-12 16:59:39 +0000 | [diff] [blame] | 743 | # Tests that check semantics for a non-debuggable app. |
| 744 | TEST_ART_BROKEN_DEBUGGABLE_RUN_TESTS := \ |
| 745 | 909-attach-agent \ |
| 746 | |
| 747 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \ |
| 748 | $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 749 | $(IMAGE_TYPES),$(PICTEST_TYPES),debuggable,$(TEST_ART_BROKEN_DEBUGGABLE_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 750 | |
| 751 | TEST_ART_BROKEN_DEBUGGABLE_RUN_TESTS := |
| 752 | |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 753 | # Tests incompatible with bisection bug search. Sorted by incompatibility reason. |
| 754 | # 000 through 595 do not compile anything. 089 tests a build failure. 018 through 137 |
| 755 | # run dalvikvm more than once. 115 and 088 assume they are always compiled. |
| 756 | # 055 tests performance which is degraded during bisecting. |
| 757 | TEST_ART_INCOMPATIBLE_BISECTION_SEARCH_RUN_TESTS := \ |
| 758 | 000-nop \ |
| 759 | 134-nodex2oat-nofallback \ |
| 760 | 147-stripped-dex-fallback \ |
| 761 | 595-profile-saving \ |
| 762 | \ |
| 763 | 089-many-methods \ |
| 764 | \ |
| 765 | 018-stack-overflow \ |
| 766 | 116-nodex2oat \ |
| 767 | 117-nopatchoat \ |
| 768 | 118-noimage-dex2oat \ |
| 769 | 119-noimage-patchoat \ |
| 770 | 126-miranda-multidex \ |
| 771 | 137-cfi \ |
| 772 | \ |
| 773 | 115-native-bridge \ |
| 774 | 088-monitor-verification \ |
| 775 | \ |
| 776 | 055-enum-performance |
| 777 | |
| 778 | ifeq ($(ART_TEST_BISECTION),true) |
| 779 | ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \ |
| 780 | $(PREBUILD_TYPES),$(OPTIMIZING_COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \ |
| 781 | $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \ |
| 782 | $(TEST_ART_INCOMPATIBLE_BISECTION_SEARCH_RUN_TESTS),$(ALL_ADDRESS_SIZES)) |
| 783 | endif |
| 784 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 785 | # Clear variables ahead of appending to them when defining tests. |
| 786 | $(foreach target, $(TARGET_TYPES), $(eval ART_RUN_TEST_$(call name-to-var,$(target))_RULES :=)) |
| 787 | $(foreach target, $(TARGET_TYPES), \ |
| 788 | $(foreach prebuild, $(PREBUILD_TYPES), \ |
| 789 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(prebuild))_RULES :=))) |
| 790 | $(foreach target, $(TARGET_TYPES), \ |
| 791 | $(foreach compiler, $(COMPILER_TYPES), \ |
| 792 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(compiler))_RULES :=))) |
| 793 | $(foreach target, $(TARGET_TYPES), \ |
| 794 | $(foreach relocate, $(RELOCATE_TYPES), \ |
| 795 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(relocate))_RULES :=))) |
| 796 | $(foreach target, $(TARGET_TYPES), \ |
| 797 | $(foreach trace, $(TRACE_TYPES), \ |
| 798 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(trace))_RULES :=))) |
| 799 | $(foreach target, $(TARGET_TYPES), \ |
| 800 | $(foreach gc, $(GC_TYPES), \ |
| 801 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(gc))_RULES :=))) |
| 802 | $(foreach target, $(TARGET_TYPES), \ |
| 803 | $(foreach jni, $(JNI_TYPES), \ |
| 804 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(jni))_RULES :=))) |
| 805 | $(foreach target, $(TARGET_TYPES), \ |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 806 | $(foreach image, $(IMAGE_TYPES), \ |
| 807 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(image))_RULES :=))) |
| 808 | $(foreach target, $(TARGET_TYPES), \ |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 809 | $(foreach test, $(TEST_ART_RUN_TESTS), \ |
| 810 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(test))_RULES :=))) |
| 811 | $(foreach target, $(TARGET_TYPES), \ |
| 812 | $(foreach address_size, $(ALL_ADDRESS_SIZES), \ |
| 813 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(address_size))_RULES :=))) |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 814 | $(foreach target, $(TARGET_TYPES), \ |
| 815 | $(foreach run_type, $(RUN_TYPES), \ |
| 816 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(run_type))_RULES :=))) |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 817 | $(foreach target, $(TARGET_TYPES), \ |
| 818 | $(foreach debuggable_type, $(DEBUGGABLE_TYPES), \ |
| 819 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(debuggable_type))_RULES :=))) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 820 | |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 821 | # We need dex2oat and dalvikvm on the target as well as the core images (all images as we sync |
| 822 | # only once). |
| 823 | TEST_ART_TARGET_SYNC_DEPS += $(ART_TARGET_EXECUTABLES) $(TARGET_CORE_IMG_OUTS) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 824 | |
Alex Light | 7233c7e | 2016-07-28 10:07:45 -0700 | [diff] [blame] | 825 | # Also need libartagent. |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 826 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_ARCH)_libartagent) |
| 827 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_ARCH)_libartagentd) |
Alex Light | 7233c7e | 2016-07-28 10:07:45 -0700 | [diff] [blame] | 828 | ifdef TARGET_2ND_ARCH |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 829 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_2ND_ARCH)_libartagent) |
| 830 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_2ND_ARCH)_libartagentd) |
Alex Light | 7233c7e | 2016-07-28 10:07:45 -0700 | [diff] [blame] | 831 | endif |
| 832 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 833 | # Also need libtiagent. |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 834 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_ARCH)_libtiagent) |
| 835 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_ARCH)_libtiagentd) |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 836 | ifdef TARGET_2ND_ARCH |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 837 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_2ND_ARCH)_libtiagent) |
| 838 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_2ND_ARCH)_libtiagentd) |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 839 | endif |
| 840 | |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 841 | # Also need libarttest. |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 842 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_ARCH)_libarttest) |
| 843 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_ARCH)_libarttestd) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 844 | ifdef TARGET_2ND_ARCH |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 845 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_2ND_ARCH)_libarttest) |
| 846 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_2ND_ARCH)_libarttestd) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 847 | endif |
| 848 | |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 849 | # Also need libnativebridgetest. |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 850 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_ARCH)_libnativebridgetest) |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 851 | ifdef TARGET_2ND_ARCH |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 852 | TEST_ART_TARGET_SYNC_DEPS += $(OUT_DIR)/$(ART_TEST_LIST_device_$(TARGET_2ND_ARCH)_libnativebridgetest) |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 853 | endif |
| 854 | |
Nicolas Geoffray | d026ee5 | 2016-11-23 10:47:02 +0000 | [diff] [blame] | 855 | # Also need libopenjdkjvmti. |
Nicolas Geoffray | ae02d2e | 2016-11-23 16:25:15 +0000 | [diff] [blame] | 856 | TEST_ART_TARGET_SYNC_DEPS += libopenjdkjvmti |
| 857 | TEST_ART_TARGET_SYNC_DEPS += libopenjdkjvmtid |
Nicolas Geoffray | d026ee5 | 2016-11-23 10:47:02 +0000 | [diff] [blame] | 858 | |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 859 | # All tests require the host executables. The tests also depend on the core images, but on |
| 860 | # specific version depending on the compiler. |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 861 | ART_TEST_HOST_RUN_TEST_DEPENDENCIES := \ |
| 862 | $(ART_HOST_EXECUTABLES) \ |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 863 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(ART_HOST_ARCH)_libtiagent) \ |
| 864 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(ART_HOST_ARCH)_libtiagentd) \ |
| 865 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(ART_HOST_ARCH)_libartagent) \ |
| 866 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(ART_HOST_ARCH)_libartagentd) \ |
| 867 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(ART_HOST_ARCH)_libarttest) \ |
| 868 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(ART_HOST_ARCH)_libarttestd) \ |
| 869 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(ART_HOST_ARCH)_libnativebridgetest) \ |
Narayan Kamath | 67ef2c9 | 2015-11-16 10:17:35 +0000 | [diff] [blame] | 870 | $(ART_HOST_OUT_SHARED_LIBRARIES)/libjavacore$(ART_HOST_SHLIB_EXTENSION) \ |
Andreas Gampe | 10edbb1 | 2016-01-06 17:59:49 -0800 | [diff] [blame] | 871 | $(ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdk$(ART_HOST_SHLIB_EXTENSION) \ |
Andreas Gampe | f2c5dbd | 2016-11-17 22:50:33 -0800 | [diff] [blame] | 872 | $(ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdkd$(ART_HOST_SHLIB_EXTENSION) \ |
| 873 | $(ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdkjvmti$(ART_HOST_SHLIB_EXTENSION) \ |
| 874 | $(ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdkjvmtid$(ART_HOST_SHLIB_EXTENSION) \ |
Ian Rogers | 665de8a | 2014-06-24 21:34:09 -0700 | [diff] [blame] | 875 | |
| 876 | ifneq ($(HOST_PREFER_32_BIT),true) |
| 877 | ART_TEST_HOST_RUN_TEST_DEPENDENCIES += \ |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 878 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(2ND_ART_HOST_ARCH)_libtiagent) \ |
| 879 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(2ND_ART_HOST_ARCH)_libtiagentd) \ |
| 880 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(2ND_ART_HOST_ARCH)_libartagent) \ |
| 881 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(2ND_ART_HOST_ARCH)_libartagentd) \ |
| 882 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(2ND_ART_HOST_ARCH)_libarttest) \ |
| 883 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(2ND_ART_HOST_ARCH)_libarttestd) \ |
| 884 | $(OUT_DIR)/$(ART_TEST_LIST_host_$(2ND_ART_HOST_ARCH)_libnativebridgetest) \ |
Narayan Kamath | 67ef2c9 | 2015-11-16 10:17:35 +0000 | [diff] [blame] | 885 | $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libjavacore$(ART_HOST_SHLIB_EXTENSION) \ |
Andreas Gampe | 10edbb1 | 2016-01-06 17:59:49 -0800 | [diff] [blame] | 886 | $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdk$(ART_HOST_SHLIB_EXTENSION) \ |
Andreas Gampe | f2c5dbd | 2016-11-17 22:50:33 -0800 | [diff] [blame] | 887 | $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdkd$(ART_HOST_SHLIB_EXTENSION) \ |
| 888 | $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdkjvmti$(ART_HOST_SHLIB_EXTENSION) \ |
| 889 | $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdkjvmtid$(ART_HOST_SHLIB_EXTENSION) \ |
| 890 | |
Ian Rogers | 665de8a | 2014-06-24 21:34:09 -0700 | [diff] [blame] | 891 | endif |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 892 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 893 | # Create a rule to build and run a tests following the form: |
Calin Juravle | 9228b2a | 2014-10-22 15:54:34 +0100 | [diff] [blame] | 894 | # test-art-{1: host or target}-run-test-{2: debug ndebug}-{3: prebuild no-prebuild no-dex2oat}- |
Nicolas Geoffray | 7db00cd | 2016-03-22 10:43:01 +0000 | [diff] [blame] | 895 | # {4: interpreter optimizing jit interp-ac}- |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 896 | # {5: relocate nrelocate relocate-npatchoat}- |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 897 | # {6: trace or ntrace}-{7: gcstress gcverify cms}-{8: forcecopy checkjni jni}- |
| 898 | # {9: no-image image picimage}-{10: pictest npictest}- |
| 899 | # {11: ndebuggable debuggable}-{12: test name}{13: 32 or 64} |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 900 | define define-test-art-run-test |
Nicolas Geoffray | 611e1db | 2014-10-09 17:34:45 +0100 | [diff] [blame] | 901 | run_test_options := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 902 | prereq_rule := |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 903 | test_groups := |
| 904 | uc_host_or_target := |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 905 | jack_classpath := |
Hiroshi Yamauchi | 1d4184d | 2015-07-13 17:11:22 -0700 | [diff] [blame] | 906 | ifeq ($(ART_TEST_WITH_STRACE),true) |
| 907 | run_test_options += --strace |
| 908 | endif |
Alex Light | bfac14a | 2014-07-30 09:41:21 -0700 | [diff] [blame] | 909 | ifeq ($(ART_TEST_RUN_TEST_ALWAYS_CLEAN),true) |
| 910 | run_test_options += --always-clean |
| 911 | endif |
Wojciech Staszkiewicz | d7a819a | 2016-09-01 14:43:39 -0700 | [diff] [blame] | 912 | ifeq ($(ART_TEST_BISECTION),true) |
| 913 | run_test_options += --bisection-search |
| 914 | endif |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 915 | ifeq ($(1),host) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 916 | uc_host_or_target := HOST |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 917 | test_groups := ART_RUN_TEST_HOST_RULES |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 918 | run_test_options += --host |
Yohann Roussel | 3048698 | 2015-07-21 16:25:44 +0200 | [diff] [blame] | 919 | prereq_rule := $(ART_TEST_HOST_RUN_TEST_DEPENDENCIES) $(HOST_JACK_CLASSPATH_DEPENDENCIES) |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 920 | jack_classpath := $(HOST_JACK_CLASSPATH) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 921 | else |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 922 | ifeq ($(1),target) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 923 | uc_host_or_target := TARGET |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 924 | test_groups := ART_RUN_TEST_TARGET_RULES |
Yohann Roussel | 3048698 | 2015-07-21 16:25:44 +0200 | [diff] [blame] | 925 | prereq_rule := test-art-target-sync $(TARGET_JACK_CLASSPATH_DEPENDENCIES) |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 926 | jack_classpath := $(TARGET_JACK_CLASSPATH) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 927 | else |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 928 | $$(error found $(1) expected $(TARGET_TYPES)) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 929 | endif |
| 930 | endif |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 931 | ifeq ($(2),debug) |
| 932 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_DEBUG_RULES |
| 933 | else |
| 934 | ifeq ($(2),ndebug) |
| 935 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_RELEASE_RULES |
| 936 | run_test_options += -O |
| 937 | else |
| 938 | $$(error found $(2) expected $(RUN_TYPES)) |
| 939 | endif |
| 940 | endif |
| 941 | ifeq ($(3),prebuild) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 942 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_PREBUILD_RULES |
| 943 | run_test_options += --prebuild |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 944 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 945 | ifeq ($(3),no-prebuild) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 946 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_PREBUILD_RULES |
| 947 | run_test_options += --no-prebuild |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 948 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 949 | ifeq ($(3),no-dex2oat) |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 950 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_DEX2OAT_RULES |
| 951 | run_test_options += --no-prebuild --no-dex2oat |
| 952 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 953 | $$(error found $(3) expected $(PREBUILD_TYPES)) |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 954 | endif |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 955 | endif |
| 956 | endif |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 957 | ifeq ($(4),optimizing) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 958 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_OPTIMIZING_RULES |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 959 | run_test_options += --optimizing |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 960 | else ifeq ($(4),regalloc_gc) |
| 961 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_OPTIMIZING_GRAPH_COLOR_RULES |
| 962 | run_test_options += --optimizing -Xcompiler-option --register-allocation-strategy=graph-color |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 963 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 964 | ifeq ($(4),interpreter) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 965 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_INTERPRETER_RULES |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 966 | run_test_options += --interpreter |
Andreas Gampe | 825570c | 2015-07-26 10:26:03 -0700 | [diff] [blame] | 967 | else ifeq ($(4),interp-ac) |
Igor Murashkin | 7617abd | 2015-07-10 18:27:47 -0700 | [diff] [blame] | 968 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_INTERPRETER_ACCESS_CHECKS_RULES |
| 969 | run_test_options += --interpreter --verify-soft-fail |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 970 | else |
Nicolas Geoffray | 7db00cd | 2016-03-22 10:43:01 +0000 | [diff] [blame] | 971 | ifeq ($(4),jit) |
| 972 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_JIT_RULES |
| 973 | run_test_options += --jit |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 974 | else |
Nicolas Geoffray | 7db00cd | 2016-03-22 10:43:01 +0000 | [diff] [blame] | 975 | $$(error found $(4) expected $(COMPILER_TYPES)) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 976 | endif |
| 977 | endif |
| 978 | endif |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 979 | |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 980 | ifeq ($(5),relocate) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 981 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_RELOCATE_RULES |
| 982 | run_test_options += --relocate |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 983 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 984 | ifeq ($(5),no-relocate) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 985 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_RELOCATE_RULES |
| 986 | run_test_options += --no-relocate |
| 987 | else |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 988 | ifeq ($(5),relocate-npatchoat) |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 989 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_RELOCATE_NO_PATCHOAT_RULES |
| 990 | run_test_options += --relocate --no-patchoat |
| 991 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 992 | $$(error found $(5) expected $(RELOCATE_TYPES)) |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 993 | endif |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 994 | endif |
| 995 | endif |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 996 | ifeq ($(6),trace) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 997 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_TRACE_RULES |
Ian Rogers | 716e4f8 | 2014-07-16 11:18:03 -0700 | [diff] [blame] | 998 | run_test_options += --trace |
Ian Rogers | 716e4f8 | 2014-07-16 11:18:03 -0700 | [diff] [blame] | 999 | else |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 1000 | ifeq ($(6),ntrace) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1001 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_TRACE_RULES |
Ian Rogers | 701aa64 | 2014-07-18 11:38:13 -0700 | [diff] [blame] | 1002 | else |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 1003 | ifeq ($(6),stream) |
| 1004 | # Group streaming under normal tracing rules. |
| 1005 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_TRACE_RULES |
| 1006 | run_test_options += --trace --stream |
| 1007 | else |
| 1008 | $$(error found $(6) expected $(TRACE_TYPES)) |
| 1009 | endif |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1010 | endif |
| 1011 | endif |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1012 | ifeq ($(7),gcverify) |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 1013 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_GCVERIFY_RULES |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1014 | run_test_options += --gcverify |
| 1015 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1016 | ifeq ($(7),gcstress) |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 1017 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_GCSTRESS_RULES |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1018 | run_test_options += --gcstress |
| 1019 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1020 | ifeq ($(7),cms) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1021 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_CMS_RULES |
Ian Rogers | 8a14b75 | 2014-07-18 15:06:53 -0700 | [diff] [blame] | 1022 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1023 | $$(error found $(7) expected $(GC_TYPES)) |
Ian Rogers | 701aa64 | 2014-07-18 11:38:13 -0700 | [diff] [blame] | 1024 | endif |
Ian Rogers | 716e4f8 | 2014-07-16 11:18:03 -0700 | [diff] [blame] | 1025 | endif |
| 1026 | endif |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1027 | ifeq ($(8),forcecopy) |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 1028 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_FORCECOPY_RULES |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1029 | run_test_options += --runtime-option -Xjniopts:forcecopy |
| 1030 | ifneq ($$(ART_TEST_JNI_FORCECOPY),true) |
| 1031 | skip_test := true |
| 1032 | endif |
| 1033 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1034 | ifeq ($(8),checkjni) |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 1035 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_CHECKJNI_RULES |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1036 | run_test_options += --runtime-option -Xcheck:jni |
| 1037 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1038 | ifeq ($(8),jni) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1039 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_JNI_RULES |
| 1040 | else |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1041 | $$(error found $(8) expected $(JNI_TYPES)) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1042 | endif |
| 1043 | endif |
| 1044 | endif |
Andreas Gampe | 8a159fd | 2015-09-21 15:14:38 -0700 | [diff] [blame] | 1045 | image_suffix := $(4) |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 1046 | ifeq ($(4),regalloc_gc) |
| 1047 | # Graph coloring tests share the image_suffix with optimizing tests. |
| 1048 | image_suffix := optimizing |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 1049 | else |
| 1050 | ifeq ($(4),jit) |
| 1051 | # JIT tests share the image_suffix with interpreter tests. |
| 1052 | image_suffix := interpreter |
| 1053 | endif |
Matthew Gharrity | 71572de | 2016-08-08 18:03:46 -0700 | [diff] [blame] | 1054 | endif |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1055 | ifeq ($(9),no-image) |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 1056 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_IMAGE_RULES |
| 1057 | run_test_options += --no-image |
Andreas Gampe | bf03e84 | 2014-10-29 20:46:17 -0700 | [diff] [blame] | 1058 | # Add the core dependency. This is required for pre-building. |
Andreas Gampe | 6dd42a8 | 2017-01-09 10:42:25 -0800 | [diff] [blame] | 1059 | # Use the PIC image, as it is the default in run-test, to match dependencies. |
Andreas Gampe | bf03e84 | 2014-10-29 20:46:17 -0700 | [diff] [blame] | 1060 | ifeq ($(1),host) |
Andreas Gampe | 6dd42a8 | 2017-01-09 10:42:25 -0800 | [diff] [blame] | 1061 | prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_pic_$(13)) |
Andreas Gampe | bf03e84 | 2014-10-29 20:46:17 -0700 | [diff] [blame] | 1062 | else |
Andreas Gampe | 6dd42a8 | 2017-01-09 10:42:25 -0800 | [diff] [blame] | 1063 | prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_pic_$(13)) |
Andreas Gampe | bf03e84 | 2014-10-29 20:46:17 -0700 | [diff] [blame] | 1064 | endif |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 1065 | else |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 1066 | ifeq ($(9),npicimage) |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 1067 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_IMAGE_RULES |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 1068 | run_test_options += --npic-image |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1069 | # Add the core dependency. |
| 1070 | ifeq ($(1),host) |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1071 | prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_no-pic_$(13)) |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1072 | else |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1073 | prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_no-pic_$(13)) |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1074 | endif |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 1075 | else |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1076 | ifeq ($(9),picimage) |
| 1077 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_PICIMAGE_RULES |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1078 | ifeq ($(1),host) |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1079 | prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_pic_$(13)) |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1080 | else |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1081 | prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_pic_$(13)) |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1082 | endif |
| 1083 | else |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 1084 | ifeq ($(9),multinpicimage) |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1085 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_IMAGE_RULES |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 1086 | run_test_options += --npic-image --multi-image |
Roland Levillain | 3c36f66 | 2016-01-14 12:40:41 +0000 | [diff] [blame] | 1087 | ifeq ($(1),host) |
| 1088 | prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_no-pic_multi_$(13)) |
| 1089 | else |
| 1090 | prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_no-pic_multi_$(13)) |
| 1091 | endif |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1092 | else |
| 1093 | ifeq ($(9),multipicimage) |
| 1094 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_PICIMAGE_RULES |
Nicolas Geoffray | b76bc78 | 2016-09-14 12:33:34 +0000 | [diff] [blame] | 1095 | run_test_options += --multi-image |
Roland Levillain | 3c36f66 | 2016-01-14 12:40:41 +0000 | [diff] [blame] | 1096 | ifeq ($(1),host) |
| 1097 | prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_pic_multi_$(13)) |
| 1098 | else |
| 1099 | prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_pic_multi_$(13)) |
| 1100 | endif |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1101 | else |
| 1102 | $$(error found $(9) expected $(IMAGE_TYPES)) |
| 1103 | endif |
| 1104 | endif |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1105 | endif |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 1106 | endif |
| 1107 | endif |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1108 | ifeq ($(10),pictest) |
| 1109 | run_test_options += --pic-test |
| 1110 | else |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 1111 | ifeq ($(10),npictest) |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1112 | # Nothing to be done. |
| 1113 | else |
| 1114 | $$(error found $(10) expected $(PICTEST_TYPES)) |
| 1115 | endif |
| 1116 | endif |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1117 | ifeq ($(11),debuggable) |
| 1118 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_DEBUGGABLE_RULES |
| 1119 | run_test_options += --debuggable |
| 1120 | else |
Mathieu Chartier | 1445dd3 | 2015-03-20 14:29:51 -0700 | [diff] [blame] | 1121 | ifeq ($(11),ndebuggable) |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1122 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NONDEBUGGABLE_RULES |
| 1123 | # Nothing to be done. |
| 1124 | else |
| 1125 | $$(error found $(11) expected $(DEBUGGABLE_TYPES)) |
| 1126 | endif |
| 1127 | endif |
| 1128 | # $(12) is the test name. |
| 1129 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_$(call name-to-var,$(12))_RULES |
| 1130 | ifeq ($(13),64) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1131 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_64_RULES |
| 1132 | run_test_options += --64 |
| 1133 | else |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1134 | ifeq ($(13),32) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1135 | test_groups += ART_RUN_TEST_$$(uc_host_or_target)_32_RULES |
| 1136 | else |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1137 | $$(error found $(13) expected $(ALL_ADDRESS_SIZES)) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1138 | endif |
| 1139 | endif |
Andreas Gampe | 4d2ef33 | 2015-08-05 09:24:45 -0700 | [diff] [blame] | 1140 | # Override of host instruction-set-features. Required to test advanced x86 intrinsics. The |
| 1141 | # conditionals aren't really correct, they will fail to do the right thing on a 32-bit only |
| 1142 | # host. However, this isn't common enough to worry here and make the conditions complicated. |
| 1143 | ifneq ($(DEX2OAT_HOST_INSTRUCTION_SET_FEATURES),) |
| 1144 | ifeq ($(13),64) |
| 1145 | run_test_options += --instruction-set-features $(DEX2OAT_HOST_INSTRUCTION_SET_FEATURES) |
| 1146 | endif |
| 1147 | endif |
| 1148 | ifneq ($($(HOST_2ND_ARCH_VAR_PREFIX)DEX2OAT_HOST_INSTRUCTION_SET_FEATURES),) |
| 1149 | ifeq ($(13),32) |
| 1150 | run_test_options += --instruction-set-features $($(HOST_2ND_ARCH_VAR_PREFIX)DEX2OAT_HOST_INSTRUCTION_SET_FEATURES) |
| 1151 | endif |
| 1152 | endif |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1153 | run_test_rule_name := test-art-$(1)-run-test-$(2)-$(3)-$(4)-$(5)-$(6)-$(7)-$(8)-$(9)-$(10)-$(11)-$(12)$(13) |
Colin Cross | a82a1ac | 2016-10-04 23:06:16 +0000 | [diff] [blame] | 1154 | run_test_options := --output-path $(ART_HOST_TEST_DIR)/run-test-output/$$(run_test_rule_name) \ |
Ian Rogers | 5242c0a | 2014-07-18 11:02:19 -0700 | [diff] [blame] | 1155 | $$(run_test_options) |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 1156 | ifneq ($(ART_TEST_ANDROID_ROOT),) |
| 1157 | run_test_options := --android-root $(ART_TEST_ANDROID_ROOT) $$(run_test_options) |
| 1158 | endif |
Alex Light | 91de25f | 2015-10-28 17:00:06 -0700 | [diff] [blame] | 1159 | ifeq ($(ART_TEST_QUIET),true) |
| 1160 | run_test_options += --quiet |
| 1161 | endif |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1162 | $$(run_test_rule_name): PRIVATE_RUN_TEST_OPTIONS := $$(run_test_options) |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 1163 | $$(run_test_rule_name): PRIVATE_JACK_CLASSPATH := $$(jack_classpath) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1164 | .PHONY: $$(run_test_rule_name) |
Yohann Roussel | 05b9125 | 2015-12-09 12:02:46 +0100 | [diff] [blame] | 1165 | $$(run_test_rule_name): $(TEST_ART_RUN_TEST_DEPENDENCIES) $(HOST_OUT_EXECUTABLES)/hprof-conv $$(prereq_rule) | $(TEST_ART_RUN_TEST_ORDERONLY_DEPENDENCIES) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1166 | $(hide) $$(call ART_TEST_SKIP,$$@) && \ |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 1167 | DX=$(abspath $(DX)) \ |
| 1168 | JASMIN=$(abspath $(HOST_OUT_EXECUTABLES)/jasmin) \ |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 1169 | SMALI=$(abspath $(HOST_OUT_EXECUTABLES)/smali) \ |
| 1170 | DXMERGER=$(abspath $(HOST_OUT_EXECUTABLES)/dexmerger) \ |
Yohann Roussel | cc6bb93 | 2016-01-19 23:29:29 +0100 | [diff] [blame] | 1171 | JACK_VERSION=$(JACK_DEFAULT_VERSION) \ |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 1172 | JACK=$(abspath $(JACK)) \ |
Yohann Roussel | aaa779a | 2016-01-19 17:07:18 +0100 | [diff] [blame] | 1173 | JACK_VERSION=$(JACK_DEFAULT_VERSION) \ |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 1174 | JACK_CLASSPATH=$$(PRIVATE_JACK_CLASSPATH) \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1175 | art/test/run-test $$(PRIVATE_RUN_TEST_OPTIONS) $(12) \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1176 | && $$(call ART_TEST_PASSED,$$@) || $$(call ART_TEST_FAILED,$$@) |
| 1177 | $$(hide) (echo $(MAKECMDGOALS) | grep -q $$@ && \ |
| 1178 | echo "run-test run as top-level target, removing test directory $(ART_HOST_TEST_DIR)" && \ |
| 1179 | rm -r $(ART_HOST_TEST_DIR)) || true |
| 1180 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1181 | $$(foreach test_group,$$(test_groups), $$(eval $$(value test_group) += $$(run_test_rule_name))) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1182 | |
| 1183 | # Clear locally defined variables. |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1184 | uc_host_or_target := |
| 1185 | test_groups := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1186 | run_test_options := |
| 1187 | run_test_rule_name := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1188 | prereq_rule := |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 1189 | jack_classpath := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1190 | endef # define-test-art-run-test |
| 1191 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1192 | $(foreach target, $(TARGET_TYPES), \ |
| 1193 | $(foreach test, $(TEST_ART_RUN_TESTS), \ |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1194 | $(foreach run_type, $(RUN_TYPES), \ |
| 1195 | $(foreach address_size, $(ADDRESS_SIZES_$(call name-to-var,$(target))), \ |
| 1196 | $(foreach prebuild, $(PREBUILD_TYPES), \ |
| 1197 | $(foreach compiler, $(COMPILER_TYPES), \ |
| 1198 | $(foreach relocate, $(RELOCATE_TYPES), \ |
| 1199 | $(foreach trace, $(TRACE_TYPES), \ |
| 1200 | $(foreach gc, $(GC_TYPES), \ |
| 1201 | $(foreach jni, $(JNI_TYPES), \ |
| 1202 | $(foreach image, $(IMAGE_TYPES), \ |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 1203 | $(foreach pictest, $(PICTEST_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1204 | $(foreach debuggable, $(DEBUGGABLE_TYPES), \ |
| 1205 | $(eval $(call define-test-art-run-test,$(target),$(run_type),$(prebuild),$(compiler),$(relocate),$(trace),$(gc),$(jni),$(image),$(pictest),$(debuggable),$(test),$(address_size))) \ |
| 1206 | ))))))))))))) |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1207 | define-test-art-run-test := |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1208 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1209 | # Define a phony rule whose purpose is to test its prerequisites. |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1210 | # $(1): host or target |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1211 | # $(2): list of prerequisites |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1212 | define define-test-art-run-test-group |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1213 | .PHONY: $(1) |
| 1214 | $(1): $(2) |
| 1215 | $(hide) $$(call ART_TEST_PREREQ_FINISHED,$$@) |
| 1216 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1217 | endef # define-test-art-run-test-group |
| 1218 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1219 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1220 | $(foreach target, $(TARGET_TYPES), $(eval \ |
| 1221 | $(call define-test-art-run-test-group,test-art-$(target)-run-test,$(ART_RUN_TEST_$(call name-to-var,$(target))_RULES)))) |
| 1222 | $(foreach target, $(TARGET_TYPES), \ |
| 1223 | $(foreach prebuild, $(PREBUILD_TYPES), $(eval \ |
| 1224 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(prebuild),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(prebuild))_RULES))))) |
| 1225 | $(foreach target, $(TARGET_TYPES), \ |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1226 | $(foreach run-type, $(RUN_TYPES), $(eval \ |
| 1227 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(run-type),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(run-type))_RULES))))) |
| 1228 | $(foreach target, $(TARGET_TYPES), \ |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1229 | $(foreach compiler, $(COMPILER_TYPES), $(eval \ |
| 1230 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(compiler),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(compiler))_RULES))))) |
| 1231 | $(foreach target, $(TARGET_TYPES), \ |
| 1232 | $(foreach relocate, $(RELOCATE_TYPES), $(eval \ |
| 1233 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(relocate),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(relocate))_RULES))))) |
| 1234 | $(foreach target, $(TARGET_TYPES), \ |
| 1235 | $(foreach trace, $(TRACE_TYPES), $(eval \ |
| 1236 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(trace),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(trace))_RULES))))) |
| 1237 | $(foreach target, $(TARGET_TYPES), \ |
| 1238 | $(foreach gc, $(GC_TYPES), $(eval \ |
| 1239 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(gc),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(gc))_RULES))))) |
| 1240 | $(foreach target, $(TARGET_TYPES), \ |
| 1241 | $(foreach jni, $(JNI_TYPES), $(eval \ |
| 1242 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(jni),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(jni))_RULES))))) |
| 1243 | $(foreach target, $(TARGET_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1244 | $(foreach debuggable, $(DEBUGGABLE_TYPES), $(eval \ |
| 1245 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(debuggable),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(debuggable))_RULES))))) |
| 1246 | $(foreach target, $(TARGET_TYPES), \ |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 1247 | $(foreach image, $(IMAGE_TYPES), $(eval \ |
| 1248 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(image),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(image))_RULES))))) |
| 1249 | $(foreach target, $(TARGET_TYPES), \ |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1250 | $(foreach test, $(TEST_ART_RUN_TESTS), $(eval \ |
| 1251 | $(call define-test-art-run-test-group,test-art-$(target)-run-test-$(test),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(test))_RULES))))) |
| 1252 | $(foreach target, $(TARGET_TYPES), \ |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 1253 | $(foreach address_size, $(ADDRESS_SIZES_$(call name-to-var,$(target))), $(eval \ |
Ian Rogers | a3cf6ce | 2014-10-02 16:35:52 -0700 | [diff] [blame] | 1254 | $(call define-test-art-run-test-group,test-art-$(target)-run-test$(address_size),$(ART_RUN_TEST_$(call name-to-var,$(target))_$(address_size)_RULES))))) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1255 | |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1256 | # Clear variables now we're finished with them. |
| 1257 | $(foreach target, $(TARGET_TYPES), $(eval ART_RUN_TEST_$(call name-to-var,$(target))_RULES :=)) |
| 1258 | $(foreach target, $(TARGET_TYPES), \ |
| 1259 | $(foreach prebuild, $(PREBUILD_TYPES), \ |
| 1260 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(prebuild))_RULES :=))) |
| 1261 | $(foreach target, $(TARGET_TYPES), \ |
| 1262 | $(foreach compiler, $(COMPILER_TYPES), \ |
| 1263 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(compiler))_RULES :=))) |
| 1264 | $(foreach target, $(TARGET_TYPES), \ |
| 1265 | $(foreach relocate, $(RELOCATE_TYPES), \ |
| 1266 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(relocate))_RULES :=))) |
| 1267 | $(foreach target, $(TARGET_TYPES), \ |
| 1268 | $(foreach trace, $(TRACE_TYPES), \ |
| 1269 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(trace))_RULES :=))) |
| 1270 | $(foreach target, $(TARGET_TYPES), \ |
| 1271 | $(foreach gc, $(GC_TYPES), \ |
| 1272 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(gc))_RULES :=))) |
| 1273 | $(foreach target, $(TARGET_TYPES), \ |
| 1274 | $(foreach jni, $(JNI_TYPES), \ |
| 1275 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(jni))_RULES :=))) |
| 1276 | $(foreach target, $(TARGET_TYPES), \ |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1277 | $(foreach debuggable, $(DEBUGGABLE_TYPES), \ |
| 1278 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(debuggable))_RULES :=))) |
| 1279 | $(foreach target, $(TARGET_TYPES), \ |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 1280 | $(foreach image, $(IMAGE_TYPES), \ |
| 1281 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(image))_RULES :=))) |
| 1282 | $(foreach target, $(TARGET_TYPES), \ |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1283 | $(foreach test, $(TEST_ART_RUN_TESTS), \ |
| 1284 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(test))_RULES :=))) |
| 1285 | $(foreach target, $(TARGET_TYPES), \ |
| 1286 | $(foreach address_size, $(ALL_ADDRESS_SIZES), \ |
| 1287 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(address_size))_RULES :=))) |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1288 | $(foreach target, $(TARGET_TYPES), \ |
| 1289 | $(foreach run_type, $(RUN_TYPES), \ |
| 1290 | $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(run_type))_RULES :=))) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 1291 | define-test-art-run-test-group := |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1292 | TARGET_TYPES := |
| 1293 | PREBUILD_TYPES := |
| 1294 | COMPILER_TYPES := |
| 1295 | RELOCATE_TYPES := |
| 1296 | TRACE_TYPES := |
| 1297 | GC_TYPES := |
| 1298 | JNI_TYPES := |
Alex Light | 03a112d | 2014-08-25 13:25:56 -0700 | [diff] [blame] | 1299 | IMAGE_TYPES := |
Ian Rogers | 86df3ac | 2014-08-27 10:54:11 -0700 | [diff] [blame] | 1300 | ADDRESS_SIZES_TARGET := |
| 1301 | ADDRESS_SIZES_HOST := |
Ian Rogers | f5c44b3 | 2014-08-19 16:52:36 -0700 | [diff] [blame] | 1302 | ALL_ADDRESS_SIZES := |
Nicolas Geoffray | bd2c63c | 2014-10-16 18:04:12 +0100 | [diff] [blame] | 1303 | RUN_TYPES := |
Nicolas Geoffray | 43c162f | 2015-03-09 12:21:26 +0000 | [diff] [blame] | 1304 | DEBUGGABLE_TYPES := |
Ian Rogers | 9fcaa4b | 2014-08-26 19:59:52 -0700 | [diff] [blame] | 1305 | |
Alex Light | 7233c7e | 2016-07-28 10:07:45 -0700 | [diff] [blame] | 1306 | LOCAL_PATH := |