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