blob: 2d777226dec3af6174b2143aa80981b64b9b99a8 [file] [log] [blame]
Ian Rogersafd9acc2014-06-17 08:21:54 -07001# 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
16LOCAL_PATH := $(call my-dir)
17
18include art/build/Android.common_test.mk
19
20# List of all tests of the form 003-omnibus-opcodes.
21TEST_ART_RUN_TESTS := $(wildcard $(LOCAL_PATH)/[0-9]*)
22TEST_ART_RUN_TESTS := $(subst $(LOCAL_PATH)/,, $(TEST_ART_RUN_TESTS))
23
Ian Rogersf5c44b32014-08-19 16:52:36 -070024########################################################################
25# The art-run-tests module, used to build all run-tests into an image.
Alex Light9dcc4572014-08-14 14:16:26 -070026
Ian Rogersafd9acc2014-06-17 08:21:54 -070027# 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 Willemsen7fb2c2c2016-08-01 22:58:31 -070029art_run_tests_build_dir := $(call intermediates-dir-for,JAVA_LIBRARIES,art-run-tests)/DATA
30art_run_tests_install_dir := $(call intermediates-dir-for,PACKAGING,art-run-tests)/DATA
Ian Rogersafd9acc2014-06-17 08:21:54 -070031
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.
34TEST_ART_RUN_TEST_BUILD_RULES :=
35
Nicolas Geoffray07f2bc12015-05-29 13:40:25 +010036# Dependencies for actually running a run-test.
Sebastien Hertz19ac0272015-02-24 17:39:50 +010037TEST_ART_RUN_TEST_DEPENDENCIES := \
38 $(DX) \
39 $(HOST_OUT_EXECUTABLES)/jasmin \
40 $(HOST_OUT_EXECUTABLES)/smali \
Sebastien Hertz2b763c32016-03-31 09:22:50 +020041 $(HOST_OUT_EXECUTABLES)/dexmerger \
42 $(JACK)
Sebastien Hertz19ac0272015-02-24 17:39:50 +010043
Sebastien Hertz2b763c32016-03-31 09:22:50 +020044TEST_ART_RUN_TEST_ORDERONLY_DEPENDENCIES := setup-jack-server
Nicolas Geoffray07f2bc12015-05-29 13:40:25 +010045
Hiroshi Yamauchi093f1b42015-07-14 12:20:30 -070046ifeq ($(ART_TEST_DEBUG_GC),true)
47 ART_TEST_WITH_STRACE := true
48endif
49
Ian Rogersafd9acc2014-06-17 08:21:54 -070050# Helper to create individual build targets for tests. Must be called with $(eval).
51# $(1): the test number
52define define-build-art-run-test
Dan Willemsen7fb2c2c2016-08-01 22:58:31 -070053 dmart_target := $(art_run_tests_build_dir)/art-run-tests/$(1)/touch
54 dmart_install_target := $(art_run_tests_install_dir)/art-run-tests/$(1)/touch
Sebastien Hertz19ac0272015-02-24 17:39:50 +010055 run_test_options = --build-only
Alex Light91de25f2015-10-28 17:00:06 -070056 ifeq ($(ART_TEST_QUIET),true)
57 run_test_options += --quiet
58 endif
Sebastien Hertz19ac0272015-02-24 17:39:50 +010059$$(dmart_target): PRIVATE_RUN_TEST_OPTIONS := $$(run_test_options)
Yohann Roussel05b91252015-12-09 12:02:46 +010060$$(dmart_target): $(TEST_ART_RUN_TEST_DEPENDENCIES) $(TARGET_JACK_CLASSPATH_DEPENDENCIES) | $(TEST_ART_RUN_TEST_ORDERONLY_DEPENDENCIES)
Ian Rogersafd9acc2014-06-17 08:21:54 -070061 $(hide) rm -rf $$(dir $$@) && mkdir -p $$(dir $$@)
62 $(hide) DX=$(abspath $(DX)) JASMIN=$(abspath $(HOST_OUT_EXECUTABLES)/jasmin) \
Andreas Gampe8fda9f22014-10-03 16:15:37 -070063 SMALI=$(abspath $(HOST_OUT_EXECUTABLES)/smali) \
64 DXMERGER=$(abspath $(HOST_OUT_EXECUTABLES)/dexmerger) \
Yohann Rousselcc6bb932016-01-19 23:29:29 +010065 JACK_VERSION=$(JACK_DEFAULT_VERSION) \
Sebastien Hertz19ac0272015-02-24 17:39:50 +010066 JACK=$(abspath $(JACK)) \
Yohann Rousselaaa779a2016-01-19 17:07:18 +010067 JACK_VERSION=$(JACK_DEFAULT_VERSION) \
Sebastien Hertz19ac0272015-02-24 17:39:50 +010068 JACK_CLASSPATH=$(TARGET_JACK_CLASSPATH) \
Sebastien Hertz19ac0272015-02-24 17:39:50 +010069 $(LOCAL_PATH)/run-test $$(PRIVATE_RUN_TEST_OPTIONS) --output-path $$(abspath $$(dir $$@)) $(1)
Ian Rogersafd9acc2014-06-17 08:21:54 -070070 $(hide) touch $$@
71
Dan Willemsen7fb2c2c2016-08-01 22:58:31 -070072$$(dmart_install_target): $$(dmart_target)
73 $(hide) rm -rf $$(dir $$@) && mkdir -p $$(dir $$@)
74 $(hide) cp $$(dir $$<)/* $$(dir $$@)/
75
76 TEST_ART_RUN_TEST_BUILD_RULES += $$(dmart_install_target)
Ian Rogersafd9acc2014-06-17 08:21:54 -070077 dmart_target :=
Dan Willemsen7fb2c2c2016-08-01 22:58:31 -070078 dmart_install_target :=
Sebastien Hertz19ac0272015-02-24 17:39:50 +010079 run_test_options :=
Ian Rogersafd9acc2014-06-17 08:21:54 -070080endef
Ian Rogersbf66bce2014-06-24 23:15:34 -070081$(foreach test, $(TEST_ART_RUN_TESTS), $(eval $(call define-build-art-run-test,$(test))))
Ian Rogersafd9acc2014-06-17 08:21:54 -070082
83include $(CLEAR_VARS)
84LOCAL_MODULE_TAGS := tests
85LOCAL_MODULE := art-run-tests
Ian Rogersabbf2422014-10-15 11:57:01 -070086LOCAL_ADDITIONAL_DEPENDENCIES := $(TEST_ART_RUN_TEST_BUILD_RULES)
Ian Rogersafd9acc2014-06-17 08:21:54 -070087# The build system use this flag to pick up files generated by declare-make-art-run-test.
Dan Willemsen7fb2c2c2016-08-01 22:58:31 -070088LOCAL_PICKUP_FILES := $(art_run_tests_install_dir)
Ian Rogersafd9acc2014-06-17 08:21:54 -070089
90include $(BUILD_PHONY_PACKAGE)
91
92# Clear temp vars.
Dan Willemsen7fb2c2c2016-08-01 22:58:31 -070093art_run_tests_build_dir :=
94art_run_tests_install_dir :=
Ian Rogersafd9acc2014-06-17 08:21:54 -070095define-build-art-run-test :=
Ian Rogers8a14b752014-07-18 15:06:53 -070096TEST_ART_RUN_TEST_BUILD_RULES :=
Ian Rogersafd9acc2014-06-17 08:21:54 -070097
98########################################################################
Ian Rogersf5c44b32014-08-19 16:52:36 -070099# General rules to build and run a run-test.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700100
Ian Rogersf5c44b32014-08-19 16:52:36 -0700101TARGET_TYPES := host target
Nicolas Geoffray41bb3312014-10-24 13:49:08 +0100102PREBUILD_TYPES :=
103ifeq ($(ART_TEST_RUN_TEST_PREBUILD),true)
104 PREBUILD_TYPES += prebuild
105endif
Ian Rogers86df3ac2014-08-27 10:54:11 -0700106ifeq ($(ART_TEST_RUN_TEST_NO_PREBUILD),true)
107 PREBUILD_TYPES += no-prebuild
108endif
109ifeq ($(ART_TEST_RUN_TEST_NO_DEX2OAT),true)
110 PREBUILD_TYPES += no-dex2oat
111endif
112COMPILER_TYPES :=
Igor Murashkin7617abd2015-07-10 18:27:47 -0700113ifeq ($(ART_TEST_INTERPRETER_ACCESS_CHECKS),true)
Andreas Gampe825570c2015-07-26 10:26:03 -0700114 COMPILER_TYPES += interp-ac
Igor Murashkin7617abd2015-07-10 18:27:47 -0700115endif
Ian Rogers86df3ac2014-08-27 10:54:11 -0700116ifeq ($(ART_TEST_INTERPRETER),true)
117 COMPILER_TYPES += interpreter
118endif
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800119ifeq ($(ART_TEST_JIT),true)
120 COMPILER_TYPES += jit
121endif
Ian Rogers86df3ac2014-08-27 10:54:11 -0700122ifeq ($(ART_TEST_OPTIMIZING),true)
123 COMPILER_TYPES += optimizing
124endif
125RELOCATE_TYPES := relocate
126ifeq ($(ART_TEST_RUN_TEST_NO_RELOCATE),true)
127 RELOCATE_TYPES += no-relocate
128endif
129ifeq ($(ART_TEST_RUN_TEST_RELOCATE_NO_PATCHOAT),true)
Andreas Gampeb9aec2c2015-04-23 22:23:47 -0700130 RELOCATE_TYPES += relocate-npatchoat
Ian Rogers86df3ac2014-08-27 10:54:11 -0700131endif
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700132TRACE_TYPES := ntrace
Ian Rogers86df3ac2014-08-27 10:54:11 -0700133ifeq ($(ART_TEST_TRACE),true)
134 TRACE_TYPES += trace
135endif
Andreas Gampe7526d782015-06-22 22:53:45 -0700136ifeq ($(ART_TEST_TRACE_STREAM),true)
137 TRACE_TYPES += stream
138endif
Ian Rogers86df3ac2014-08-27 10:54:11 -0700139GC_TYPES := cms
Alex Light992f1e72014-08-27 16:08:57 -0700140ifeq ($(ART_TEST_GC_STRESS),true)
Ian Rogers86df3ac2014-08-27 10:54:11 -0700141 GC_TYPES += gcstress
142endif
Alex Light992f1e72014-08-27 16:08:57 -0700143ifeq ($(ART_TEST_GC_VERIFY),true)
Ian Rogers86df3ac2014-08-27 10:54:11 -0700144 GC_TYPES += gcverify
145endif
146JNI_TYPES := checkjni
147ifeq ($(ART_TEST_JNI_FORCECOPY),true)
148 JNI_TYPES += forcecopy
149endif
150IMAGE_TYPES := image
151ifeq ($(ART_TEST_RUN_TEST_NO_IMAGE),true)
152 IMAGE_TYPES += no-image
153endif
Jeff Haodcdc85b2015-12-04 14:06:18 -0800154ifeq ($(ART_TEST_RUN_TEST_MULTI_IMAGE),true)
155 IMAGE_TYPES := multiimage
156endif
Andreas Gampec23c9c92014-10-28 14:47:25 -0700157ifeq ($(ART_TEST_PIC_IMAGE),true)
158 IMAGE_TYPES += picimage
Jeff Haodcdc85b2015-12-04 14:06:18 -0800159 ifeq ($(ART_TEST_RUN_TEST_MULTI_IMAGE),true)
160 IMAGE_TYPES := multipicimage
161 endif
Andreas Gampec23c9c92014-10-28 14:47:25 -0700162endif
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700163PICTEST_TYPES := npictest
Andreas Gampec23c9c92014-10-28 14:47:25 -0700164ifeq ($(ART_TEST_PIC_TEST),true)
165 PICTEST_TYPES += pictest
166endif
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100167RUN_TYPES :=
168ifeq ($(ART_TEST_RUN_TEST_DEBUG),true)
169 RUN_TYPES += debug
170endif
171ifeq ($(ART_TEST_RUN_TEST_NDEBUG),true)
172 RUN_TYPES += ndebug
173endif
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700174DEBUGGABLE_TYPES := ndebuggable
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000175ifeq ($(ART_TEST_RUN_TEST_DEBUGGABLE),true)
176DEBUGGABLE_TYPES += debuggable
177endif
Nicolas Geoffray41bb3312014-10-24 13:49:08 +0100178ADDRESS_SIZES_TARGET := $(ART_PHONY_TEST_TARGET_SUFFIX)
179ADDRESS_SIZES_HOST := $(ART_PHONY_TEST_HOST_SUFFIX)
180ifeq ($(ART_TEST_RUN_TEST_2ND_ARCH),true)
181 ADDRESS_SIZES_TARGET += $(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
182 ADDRESS_SIZES_HOST += $(2ND_ART_PHONY_TEST_HOST_SUFFIX)
183endif
Ian Rogersf5c44b32014-08-19 16:52:36 -0700184ALL_ADDRESS_SIZES := 64 32
Ian Rogers86df3ac2014-08-27 10:54:11 -0700185
Ian Rogersf5c44b32014-08-19 16:52:36 -0700186# List all run test names with number arguments agreeing with the comment above.
187define all-run-test-names
188 $(foreach target, $(1), \
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100189 $(foreach run-type, $(2), \
190 $(foreach prebuild, $(3), \
191 $(foreach compiler, $(4), \
192 $(foreach relocate, $(5), \
193 $(foreach trace, $(6), \
194 $(foreach gc, $(7), \
195 $(foreach jni, $(8), \
196 $(foreach image, $(9), \
Andreas Gampec23c9c92014-10-28 14:47:25 -0700197 $(foreach pictest, $(10), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000198 $(foreach debuggable, $(11), \
199 $(foreach test, $(12), \
200 $(foreach address_size, $(13), \
201 test-art-$(target)-run-test-$(run-type)-$(prebuild)-$(compiler)-$(relocate)-$(trace)-$(gc)-$(jni)-$(image)-$(pictest)-$(debuggable)-$(test)$(address_size) \
202 )))))))))))))
Ian Rogersf5c44b32014-08-19 16:52:36 -0700203endef # all-run-test-names
204
205# To generate a full list or tests:
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100206# $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES),$(COMPILER_TYPES), \
Ian Rogers86df3ac2014-08-27 10:54:11 -0700207# $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \
Roland Levillaind139bb72015-07-15 14:09:20 +0100208# $(PICTEST_TYPES),$(DEBUGGABLE_TYPES),$(TEST_ART_RUN_TESTS),$(ALL_ADDRESS_SIZES))
Ian Rogersf5c44b32014-08-19 16:52:36 -0700209
210# Convert's a rule name to the form used in variables, e.g. no-relocate to NO_RELOCATE
211define name-to-var
212$(shell echo $(1) | tr '[:lower:]' '[:upper:]' | tr '-' '_')
213endef # name-to-var
214
Alex Lightc07d66d2015-11-13 10:51:10 -0800215ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
216 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
217 $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(ART_TEST_RUN_TEST_SKIP), $(ALL_ADDRESS_SIZES))
218
Sebastien Hertzfc075552016-02-25 18:50:23 +0100219
Nicolas Geoffray76ec73a2016-06-22 13:13:59 +0000220# Disable 149-suspend-all-stress, its output is flaky (b/28988206).
Hiroshi Yamauchi6cba74b2016-03-02 12:12:54 -0800221# Disable 577-profile-foreign-dex (b/27454772).
Sebastien Hertzfc075552016-02-25 18:50:23 +0100222TEST_ART_BROKEN_ALL_TARGET_TESTS := \
Nicolas Geoffray76ec73a2016-06-22 13:13:59 +0000223 149-suspend-all-stress \
Hiroshi Yamauchi6cba74b2016-03-02 12:12:54 -0800224 577-profile-foreign-dex \
Sebastien Hertzfc075552016-02-25 18:50:23 +0100225
226ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
227 $(COMPILER_TYPES), $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
228 $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_ALL_TARGET_TESTS), \
229 $(ALL_ADDRESS_SIZES))
230
231TEST_ART_BROKEN_ALL_TARGET_TESTS :=
232
Ian Rogersf5c44b32014-08-19 16:52:36 -0700233# Tests that are timing sensitive and flaky on heavily loaded systems.
234TEST_ART_TIMING_SENSITIVE_RUN_TESTS := \
Nicolas Geoffray0b9112d2016-01-04 15:22:00 +0000235 002-sleep \
Ian Rogersf5c44b32014-08-19 16:52:36 -0700236 053-wait-some \
Mathieu Chartiere4a91bb2015-01-28 13:11:44 -0800237 055-enum-performance \
238 133-static-invoke-super
Ian Rogersf5c44b32014-08-19 16:52:36 -0700239
Alex Lightdedcba22015-10-14 10:43:01 -0700240# disable timing sensitive tests on "dist" builds.
241ifdef dist_goal
242 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
243 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
244 $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_TIMING_SENSITIVE_RUN_TESTS), $(ALL_ADDRESS_SIZES))
245endif
246
Richard Uhlerd7864d82016-04-14 13:31:30 -0700247# 147-stripped-dex-fallback isn't supported on device because --strip-dex
248# requires the zip command.
Vladimir Marko354efa62016-02-04 19:46:56 +0000249# 569-checker-pattern-replacement tests behaviour present only on host.
250TEST_ART_BROKEN_TARGET_TESTS := \
Richard Uhlerd7864d82016-04-14 13:31:30 -0700251 147-stripped-dex-fallback \
Vladimir Marko354efa62016-02-04 19:46:56 +0000252 569-checker-pattern-replacement
253
254ifneq (,$(filter target,$(TARGET_TYPES)))
255 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES), \
256 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
257 $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_TARGET_TESTS), $(ALL_ADDRESS_SIZES))
258endif
259
260TEST_ART_BROKEN_TARGET_TESTS :=
261
Nicolas Geoffrayec00b7e2015-10-14 09:27:09 +0100262# Tests that require python3.
263TEST_ART_PYTHON3_DEPENDENCY_RUN_TESTS := \
264 960-default-smali \
265 961-default-iface-resolution-generated \
266 964-default-iface-init-generated \
Alex Light705ad492015-09-21 11:36:30 -0700267 968-default-partial-compile-generated \
Nicolas Geoffray812dd362016-01-14 22:21:14 +0000268 969-iface-super \
Alex Light705ad492015-09-21 11:36:30 -0700269 970-iface-super-resolution-generated \
Nicolas Geoffraya866ccf2016-01-19 09:17:25 +0000270 971-iface-super
Nicolas Geoffrayec00b7e2015-10-14 09:27:09 +0100271
Alex Lightdedcba22015-10-14 10:43:01 -0700272# Check if we have python3 to run our tests.
273ifeq ($(wildcard /usr/bin/python3),)
274 $(warning "No python3 found. Disabling tests: $(TEST_ART_PYTHON3_DEPENDENCY_RUN_TESTS)")
Nicolas Geoffrayec00b7e2015-10-14 09:27:09 +0100275
Alex Lightdedcba22015-10-14 10:43:01 -0700276 # Currently disable tests requiring python3 when it is not installed.
Nicolas Geoffrayec00b7e2015-10-14 09:27:09 +0100277 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
278 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
279 $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_PYTHON3_DEPENDENCY_RUN_TESTS), $(ALL_ADDRESS_SIZES))
Ian Rogersf5c44b32014-08-19 16:52:36 -0700280endif
281
Ian Rogers86df3ac2014-08-27 10:54:11 -0700282TEST_ART_TIMING_SENSITIVE_RUN_TESTS :=
283
Ian Rogers40e19122014-09-02 15:59:28 -0700284# Note 116-nodex2oat is not broken per-se it just doesn't (and isn't meant to) work with --prebuild.
Ian Rogersf5c44b32014-08-19 16:52:36 -0700285TEST_ART_BROKEN_PREBUILD_RUN_TESTS := \
Andreas Gampe3ad5d5e2015-02-03 18:26:55 -0800286 116-nodex2oat \
Jean Christophe Beyler24e04aa2014-09-12 12:03:25 -0700287 118-noimage-dex2oat \
288 134-nodex2oat-nofallback
Ian Rogersf5c44b32014-08-19 16:52:36 -0700289
Ian Rogers40e19122014-09-02 15:59:28 -0700290ifneq (,$(filter prebuild,$(PREBUILD_TYPES)))
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100291 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),prebuild, \
Ian Rogers40e19122014-09-02 15:59:28 -0700292 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000293 $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_PREBUILD_RUN_TESTS), $(ALL_ADDRESS_SIZES))
Ian Rogers40e19122014-09-02 15:59:28 -0700294endif
Ian Rogersf5c44b32014-08-19 16:52:36 -0700295
Ian Rogers86df3ac2014-08-27 10:54:11 -0700296TEST_ART_BROKEN_PREBUILD_RUN_TESTS :=
297
Andreas Gampe216848a2015-12-02 11:49:01 -0800298# 554-jit-profile-file is disabled because it needs a primary oat file to know what it should save.
Nicolas Geoffraycfa72392016-03-22 12:55:30 +0000299# 529 and 555: b/27784033
Ian Rogersf5c44b32014-08-19 16:52:36 -0700300TEST_ART_BROKEN_NO_PREBUILD_TESTS := \
Andreas Gampe216848a2015-12-02 11:49:01 -0800301 117-nopatchoat \
Richard Uhler76f5cb62016-04-04 13:30:16 -0700302 147-stripped-dex-fallback \
Nicolas Geoffraycfa72392016-03-22 12:55:30 +0000303 554-jit-profile-file \
304 529-checker-unresolved \
Andreas Gampe06b7c4d2016-06-27 14:55:02 -0700305 555-checker-regression-x86const \
306 608-checker-unresolved-lse
Ian Rogersf5c44b32014-08-19 16:52:36 -0700307
Ian Rogers40e19122014-09-02 15:59:28 -0700308ifneq (,$(filter no-prebuild,$(PREBUILD_TYPES)))
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100309 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),no-prebuild, \
Ian Rogers40e19122014-09-02 15:59:28 -0700310 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000311 $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_NO_PREBUILD_TESTS), $(ALL_ADDRESS_SIZES))
Ian Rogers40e19122014-09-02 15:59:28 -0700312endif
Ian Rogersf5c44b32014-08-19 16:52:36 -0700313
Ian Rogers86df3ac2014-08-27 10:54:11 -0700314TEST_ART_BROKEN_NO_PREBUILD_TESTS :=
315
Ian Rogers40e19122014-09-02 15:59:28 -0700316# Note 117-nopatchoat is not broken per-se it just doesn't work (and isn't meant to) without
317# --prebuild --relocate
318TEST_ART_BROKEN_NO_RELOCATE_TESTS := \
Andreas Gampe3ad5d5e2015-02-03 18:26:55 -0800319 117-nopatchoat \
320 118-noimage-dex2oat \
Calin Juravle226501b2015-12-11 14:41:31 +0000321 119-noimage-patchoat \
322 554-jit-profile-file
Ian Rogers40e19122014-09-02 15:59:28 -0700323
324ifneq (,$(filter no-relocate,$(RELOCATE_TYPES)))
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100325 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
Ian Rogers40e19122014-09-02 15:59:28 -0700326 $(COMPILER_TYPES), no-relocate,$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000327 $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_NO_RELOCATE_TESTS), $(ALL_ADDRESS_SIZES))
Ian Rogers40e19122014-09-02 15:59:28 -0700328endif
329
330TEST_ART_BROKEN_NO_RELOCATE_TESTS :=
331
Igor Murashkin7617abd2015-07-10 18:27:47 -0700332# Temporarily disable some broken tests when forcing access checks in interpreter b/22414682
333TEST_ART_BROKEN_INTERPRETER_ACCESS_CHECK_TESTS := \
Igor Murashkindf707e42016-02-02 16:56:50 -0800334 137-cfi
Igor Murashkin7617abd2015-07-10 18:27:47 -0700335
Andreas Gampe825570c2015-07-26 10:26:03 -0700336ifneq (,$(filter interp-ac,$(COMPILER_TYPES)))
Igor Murashkin7617abd2015-07-10 18:27:47 -0700337 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
Andreas Gampe825570c2015-07-26 10:26:03 -0700338 interp-ac,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
Igor Murashkin7617abd2015-07-10 18:27:47 -0700339 $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_INTERPRETER_ACCESS_CHECK_TESTS), $(ALL_ADDRESS_SIZES))
340endif
341
342TEST_ART_BROKEN_INTERPRETER_ACCESS_CHECK_TESTS :=
343
Man Cao1ed11b92015-06-11 22:47:35 -0700344# Tests that are broken with GC stress.
Alex Light8d148c92015-10-20 10:23:32 -0700345# * 137-cfi needs to unwind a second forked process. We're using a primitive sleep to wait till we
346# hope the second process got into the expected state. The slowness of gcstress makes this bad.
Alex Light9b0f5162015-11-13 10:39:34 -0800347# * 961-default-iface-resolution-generated and 964-default-iface-init-generated are very long tests
348# that often will take more than the timeout to run when gcstress is enabled. This is because
349# gcstress slows down allocations significantly which these tests do a lot.
Mathieu Chartiereb193622015-06-27 15:42:27 -0700350TEST_ART_BROKEN_GCSTRESS_RUN_TESTS := \
Alex Light8d148c92015-10-20 10:23:32 -0700351 137-cfi \
Alex Light9b0f5162015-11-13 10:39:34 -0800352 961-default-iface-resolution-generated \
353 964-default-iface-init-generated
Man Cao1ed11b92015-06-11 22:47:35 -0700354
355ifneq (,$(filter gcstress,$(GC_TYPES)))
356 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
357 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),gcstress,$(JNI_TYPES), \
358 $(IMAGE_TYPES), $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_GCSTRESS_RUN_TESTS), $(ALL_ADDRESS_SIZES))
359endif
360
361TEST_ART_BROKEN_GCSTRESS_RUN_TESTS :=
Ian Rogers40e19122014-09-02 15:59:28 -0700362
Ian Rogersf5c44b32014-08-19 16:52:36 -0700363# 115-native-bridge setup is complicated. Need to implement it correctly for the target.
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100364ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES),$(COMPILER_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000365 $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), 115-native-bridge, \
Ian Rogersf5c44b32014-08-19 16:52:36 -0700366 $(ALL_ADDRESS_SIZES))
367
Andreas Gampe3a913092015-01-10 00:26:17 -0800368# 130-hprof dumps the heap and runs hprof-conv to check whether the file is somewhat readable. This
369# is only possible on the host.
370# TODO: Turn off all the other combinations, this is more about testing actual ART code. A gtest is
371# very hard to write here, as (for a complete test) JDWP must be set up.
372ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES), \
373 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000374 $(PICTEST_TYPES),$(DEBUGGABLE_TYPES),130-hprof,$(ALL_ADDRESS_SIZES))
Andreas Gampe3a913092015-01-10 00:26:17 -0800375
Andreas Gampe94329d32015-04-24 20:22:06 -0700376# 131 is an old test. The functionality has been implemented at an earlier stage and is checked
Mathieu Chartier80b37b72015-10-12 18:13:39 -0700377# in tests 138. Blacklisted for debug builds since these builds have duplicate classes checks which
378# punt to interpreter.
379ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),debug,$(PREBUILD_TYPES), \
Andreas Gampe94329d32015-04-24 20:22:06 -0700380 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \
381 $(PICTEST_TYPES),$(DEBUGGABLE_TYPES),131-structural-change,$(ALL_ADDRESS_SIZES))
382
Mathieu Chartier80b37b72015-10-12 18:13:39 -0700383# 138-duplicate-classes-check. Turned on for debug builds since debug builds have duplicate classes
384# checks enabled, b/2133391.
385ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),ndebug,$(PREBUILD_TYPES), \
Andreas Gampe69b5d8f2015-06-03 15:43:16 -0700386 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \
387 $(PICTEST_TYPES),$(DEBUGGABLE_TYPES),138-duplicate-classes-check,$(ALL_ADDRESS_SIZES))
388
Alex Light03a112d2014-08-25 13:25:56 -0700389# All these tests check that we have sane behavior if we don't have a patchoat or dex2oat.
390# Therefore we shouldn't run them in situations where we actually don't have these since they
391# explicitly test for them. These all also assume we have an image.
Richard Uhler1b853542016-04-15 12:16:45 -0700392# 147-stripped-dex-fallback is disabled because it requires --prebuild.
Calin Juravle226501b2015-12-11 14:41:31 +0000393# 554-jit-profile-file is disabled because it needs a primary oat file to know what it should save.
Alex Light03a112d2014-08-25 13:25:56 -0700394TEST_ART_BROKEN_FALLBACK_RUN_TESTS := \
395 116-nodex2oat \
396 117-nopatchoat \
397 118-noimage-dex2oat \
Andreas Gampeb9aec2c2015-04-23 22:23:47 -0700398 119-noimage-patchoat \
Andreas Gampee1bbed22015-05-20 13:55:00 -0700399 137-cfi \
Calin Juravle226501b2015-12-11 14:41:31 +0000400 138-duplicate-classes-check2 \
Richard Uhler1b853542016-04-15 12:16:45 -0700401 147-stripped-dex-fallback \
Calin Juravle226501b2015-12-11 14:41:31 +0000402 554-jit-profile-file
Andreas Gampeb9aec2c2015-04-23 22:23:47 -0700403
404# This test fails without an image.
405TEST_ART_BROKEN_NO_IMAGE_RUN_TESTS := \
Andreas Gampee1bbed22015-05-20 13:55:00 -0700406 137-cfi \
Andreas Gampeb9aec2c2015-04-23 22:23:47 -0700407 138-duplicate-classes-check
Alex Light03a112d2014-08-25 13:25:56 -0700408
Ian Rogers40e19122014-09-02 15:59:28 -0700409ifneq (,$(filter no-dex2oat,$(PREBUILD_TYPES)))
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100410 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),no-dex2oat, \
Ian Rogers40e19122014-09-02 15:59:28 -0700411 $(COMPILER_TYPES),$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000412 $(PICTEST_TYPES),$(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_FALLBACK_RUN_TESTS),$(ALL_ADDRESS_SIZES))
Ian Rogers40e19122014-09-02 15:59:28 -0700413endif
Alex Light03a112d2014-08-25 13:25:56 -0700414
Alex Light03a112d2014-08-25 13:25:56 -0700415
Ian Rogers40e19122014-09-02 15:59:28 -0700416ifneq (,$(filter no-image,$(IMAGE_TYPES)))
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100417 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
Ian Rogers40e19122014-09-02 15:59:28 -0700418 $(COMPILER_TYPES), $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),no-image, \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000419 $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_FALLBACK_RUN_TESTS),$(ALL_ADDRESS_SIZES))
Andreas Gampeb9aec2c2015-04-23 22:23:47 -0700420 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
421 $(COMPILER_TYPES), $(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),no-image, \
422 $(PICTEST_TYPES), $(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_NO_IMAGE_RUN_TESTS),$(ALL_ADDRESS_SIZES))
Ian Rogers40e19122014-09-02 15:59:28 -0700423endif
424
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700425ifneq (,$(filter relocate-npatchoat,$(RELOCATE_TYPES)))
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100426 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700427 $(COMPILER_TYPES), relocate-npatchoat,$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000428 $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_FALLBACK_RUN_TESTS),$(ALL_ADDRESS_SIZES))
Ian Rogers40e19122014-09-02 15:59:28 -0700429endif
Alex Light03a112d2014-08-25 13:25:56 -0700430
Ian Rogers86df3ac2014-08-27 10:54:11 -0700431TEST_ART_BROKEN_FALLBACK_RUN_TESTS :=
432
Andreas Gampee1bbed22015-05-20 13:55:00 -0700433# 137:
434# This test unrolls and expects managed frames, but tracing means we run the interpreter.
Nicolas Geoffrayd9bc4332016-02-05 23:32:25 +0000435# 802 and 570-checker-osr:
Andreas Gampe9cb65bc2015-02-18 17:08:27 -0800436# This test dynamically enables tracing to force a deoptimization. This makes the test meaningless
437# when already tracing, and writes an error message that we do not want to check for.
438TEST_ART_BROKEN_TRACING_RUN_TESTS := \
Mathieu Chartier7778b882015-10-05 16:41:10 -0700439 087-gc-after-link \
Andreas Gampee1bbed22015-05-20 13:55:00 -0700440 137-cfi \
Mathieu Chartier42fbf492015-09-25 17:12:48 -0700441 141-class-unload \
Nicolas Geoffrayd9bc4332016-02-05 23:32:25 +0000442 570-checker-osr \
Andreas Gampe9cb65bc2015-02-18 17:08:27 -0800443 802-deoptimization
444
Andreas Gampe7526d782015-06-22 22:53:45 -0700445ifneq (,$(filter trace stream,$(TRACE_TYPES)))
Andreas Gampe9cb65bc2015-02-18 17:08:27 -0800446 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
Andreas Gampe7526d782015-06-22 22:53:45 -0700447 $(COMPILER_TYPES),$(RELOCATE_TYPES),trace stream,$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000448 $(PICTEST_TYPES),$(DEBUGGABLE_TYPES), $(TEST_ART_BROKEN_TRACING_RUN_TESTS),$(ALL_ADDRESS_SIZES))
Andreas Gampe9cb65bc2015-02-18 17:08:27 -0800449endif
450
Andreas Gampee1bbed22015-05-20 13:55:00 -0700451# Known broken tests for the interpreter.
452# CFI unwinding expects managed frames.
453TEST_ART_BROKEN_INTERPRETER_RUN_TESTS := \
Calin Juravle226501b2015-12-11 14:41:31 +0000454 137-cfi \
455 554-jit-profile-file
Andreas Gampee1bbed22015-05-20 13:55:00 -0700456
457ifneq (,$(filter interpreter,$(COMPILER_TYPES)))
458 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
459 interpreter,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
460 $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES),$(TEST_ART_BROKEN_INTERPRETER_RUN_TESTS),$(ALL_ADDRESS_SIZES))
461endif
462
463TEST_ART_BROKEN_INTERPRETER_RUN_TESTS :=
464
Andreas Gampeaab9f732015-05-20 14:50:06 -0700465# Known broken tests for the JIT.
466# CFI unwinding expects managed frames, and the test does not iterate enough to even compile. JIT
467# also uses Generic JNI instead of the JNI compiler.
468TEST_ART_BROKEN_JIT_RUN_TESTS := \
469 137-cfi
470
471ifneq (,$(filter jit,$(COMPILER_TYPES)))
472 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
473 jit,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
474 $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES),$(TEST_ART_BROKEN_JIT_RUN_TESTS),$(ALL_ADDRESS_SIZES))
475endif
476
477TEST_ART_BROKEN_JIT_RUN_TESTS :=
478
David Brazdil73b6cdf2015-09-30 11:47:35 +0100479# Known broken tests for the mips32 optimizing compiler backend.
480TEST_ART_BROKEN_OPTIMIZING_MIPS_RUN_TESTS := \
David Brazdil73b6cdf2015-09-30 11:47:35 +0100481 510-checker-try-catch \
Alexandre Rames5319def2014-10-23 10:03:10 +0100482
David Brazdil73b6cdf2015-09-30 11:47:35 +0100483ifeq (mips,$(TARGET_ARCH))
484 ifneq (,$(filter optimizing,$(COMPILER_TYPES)))
485 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES), \
486 optimizing,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
487 $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \
488 $(TEST_ART_BROKEN_OPTIMIZING_MIPS_RUN_TESTS),$(ALL_ADDRESS_SIZES))
489 endif
Alexandre Rames5319def2014-10-23 10:03:10 +0100490endif
491
David Brazdil73b6cdf2015-09-30 11:47:35 +0100492TEST_ART_BROKEN_OPTIMIZING_MIPS_RUN_TESTS :=
Alexandre Rames5319def2014-10-23 10:03:10 +0100493
Scott Wakeling40a04bf2015-12-11 09:50:36 +0000494# Known broken tests for the mips64 optimizing compiler backend.
495TEST_ART_BROKEN_OPTIMIZING_MIPS64_RUN_TESTS := \
Scott Wakeling40a04bf2015-12-11 09:50:36 +0000496
497ifeq (mips64,$(TARGET_ARCH))
498 ifneq (,$(filter optimizing,$(COMPILER_TYPES)))
499 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,target,$(RUN_TYPES),$(PREBUILD_TYPES), \
500 optimizing,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
501 $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \
502 $(TEST_ART_BROKEN_OPTIMIZING_MIPS64_RUN_TESTS),$(ALL_ADDRESS_SIZES))
503 endif
504endif
505
506TEST_ART_BROKEN_OPTIMIZING_MIPS64_RUN_TESTS :=
507
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000508# Tests that should fail when the optimizing compiler compiles them non-debuggable.
509TEST_ART_BROKEN_OPTIMIZING_NONDEBUGGABLE_RUN_TESTS := \
Nicolas Geoffray915b9d02015-03-11 15:11:19 +0000510 454-get-vreg \
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000511 457-regs \
512
513ifneq (,$(filter optimizing,$(COMPILER_TYPES)))
514 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
515 optimizing,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700516 $(IMAGE_TYPES),$(PICTEST_TYPES),ndebuggable,$(TEST_ART_BROKEN_OPTIMIZING_NONDEBUGGABLE_RUN_TESTS),$(ALL_ADDRESS_SIZES))
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000517endif
518
519TEST_ART_BROKEN_OPTIMIZING_NONDEBUGGABLE_RUN_TESTS :=
520
Nicolas Geoffraye50b8d22015-03-13 08:57:42 +0000521# Tests that should fail when the optimizing compiler compiles them debuggable.
522TEST_ART_BROKEN_OPTIMIZING_DEBUGGABLE_RUN_TESTS := \
Nicolas Geoffraye50b8d22015-03-13 08:57:42 +0000523
524ifneq (,$(filter optimizing,$(COMPILER_TYPES)))
525 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
526 optimizing,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
527 $(IMAGE_TYPES),$(PICTEST_TYPES),debuggable,$(TEST_ART_BROKEN_OPTIMIZING_DEBUGGABLE_RUN_TESTS),$(ALL_ADDRESS_SIZES))
528endif
529
530TEST_ART_BROKEN_OPTIMIZING_DEBUGGABLE_RUN_TESTS :=
531
Roland Levillainb0659e62016-01-26 14:05:42 +0000532# Tests that should fail in the read barrier configuration with the interpreter.
Hiroshi Yamauchi6c738362016-03-17 14:57:58 -0700533TEST_ART_BROKEN_INTERPRETER_READ_BARRIER_RUN_TESTS :=
Hiroshi Yamauchi1d858232015-05-05 13:36:39 -0700534
Roland Levillain78ebe4a2016-01-26 10:47:42 +0000535# Tests that should fail in the read barrier configuration with the Optimizing compiler (AOT).
Roland Levillaine217fee2015-12-16 14:21:33 +0000536# 484: Baker's fast path based read barrier compiler instrumentation generates code containing
537# more parallel moves on x86, thus some Checker assertions may fail.
538# 537: Expects an array copy to be intrinsified on x86-64, but calling-on-slowpath intrinsics are
539# not yet handled in the read barrier configuration.
540TEST_ART_BROKEN_OPTIMIZING_READ_BARRIER_RUN_TESTS := \
541 484-checker-register-hints \
542 537-checker-arraycopy
543
Roland Levillain560297f2016-01-29 11:37:48 +0000544# Tests that should fail in the read barrier configuration with JIT (Optimizing compiler).
Hiroshi Yamauchi5c0a4af2016-03-17 14:57:25 -0700545TEST_ART_BROKEN_JIT_READ_BARRIER_RUN_TESTS :=
Roland Levillain3c36f662016-01-14 12:40:41 +0000546
Roland Levillaine217fee2015-12-16 14:21:33 +0000547ifeq ($(ART_USE_READ_BARRIER),true)
Roland Levillainb0659e62016-01-26 14:05:42 +0000548 ifneq (,$(filter interpreter,$(COMPILER_TYPES)))
549 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \
550 $(PREBUILD_TYPES),interpreter,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES), \
551 $(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \
552 $(TEST_ART_BROKEN_INTERPRETER_READ_BARRIER_RUN_TESTS),$(ALL_ADDRESS_SIZES))
553 endif
554
Roland Levillaine217fee2015-12-16 14:21:33 +0000555 ifneq (,$(filter optimizing,$(COMPILER_TYPES)))
556 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \
557 $(PREBUILD_TYPES),optimizing,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES), \
558 $(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \
559 $(TEST_ART_BROKEN_OPTIMIZING_READ_BARRIER_RUN_TESTS),$(ALL_ADDRESS_SIZES))
560 endif
Roland Levillain3c36f662016-01-14 12:40:41 +0000561
562 ifneq (,$(filter jit,$(COMPILER_TYPES)))
563 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \
564 $(PREBUILD_TYPES),jit,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES), \
565 $(JNI_TYPES),$(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \
566 $(TEST_ART_BROKEN_JIT_READ_BARRIER_RUN_TESTS),$(ALL_ADDRESS_SIZES))
567 endif
Roland Levillaine217fee2015-12-16 14:21:33 +0000568endif
569
Roland Levillaine217fee2015-12-16 14:21:33 +0000570TEST_ART_BROKEN_OPTIMIZING_READ_BARRIER_RUN_TESTS :=
Roland Levillain3c36f662016-01-14 12:40:41 +0000571TEST_ART_BROKEN_JIT_READ_BARRIER_RUN_TESTS :=
Roland Levillaine217fee2015-12-16 14:21:33 +0000572
Alex Light2e960a02016-05-03 15:01:06 -0700573TEST_ART_BROKEN_NPIC_RUN_TESTS := 596-app-images
574ifneq (,$(filter npictest,$(PICTEST_TYPES)))
575 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES),$(PREBUILD_TYPES), \
576 ${COMPILER_TYPES},$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
577 $(IMAGE_TYPES),npictest,$(DEBUGGABLE_TYPES),$(TEST_ART_BROKEN_NPIC_RUN_TESTS),$(ALL_ADDRESS_SIZES))
578endif
579
Roland Levillaine217fee2015-12-16 14:21:33 +0000580# Tests that should fail in the heap poisoning configuration with the Optimizing compiler.
581# 055: Exceeds run time limits due to heap poisoning instrumentation (on ARM and ARM64 devices).
582TEST_ART_BROKEN_OPTIMIZING_HEAP_POISONING_RUN_TESTS := \
583 055-enum-performance
584
Andreas Gampe44372192015-05-21 10:01:42 -0700585ifeq ($(ART_HEAP_POISONING),true)
Roland Levillain4d027112015-07-01 15:41:14 +0100586 ifneq (,$(filter optimizing,$(COMPILER_TYPES)))
587 ART_TEST_KNOWN_BROKEN += $(call all-run-test-names,$(TARGET_TYPES),$(RUN_TYPES), \
588 $(PREBUILD_TYPES),optimizing,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
589 $(IMAGE_TYPES),$(PICTEST_TYPES),$(DEBUGGABLE_TYPES), \
590 $(TEST_ART_BROKEN_OPTIMIZING_HEAP_POISONING_RUN_TESTS),$(ALL_ADDRESS_SIZES))
591 endif
Andreas Gampe44372192015-05-21 10:01:42 -0700592endif
593
Roland Levillaine217fee2015-12-16 14:21:33 +0000594TEST_ART_BROKEN_OPTIMIZING_HEAP_POISONING_RUN_TESTS :=
Andreas Gampe44372192015-05-21 10:01:42 -0700595
Ian Rogersf5c44b32014-08-19 16:52:36 -0700596# Clear variables ahead of appending to them when defining tests.
597$(foreach target, $(TARGET_TYPES), $(eval ART_RUN_TEST_$(call name-to-var,$(target))_RULES :=))
598$(foreach target, $(TARGET_TYPES), \
599 $(foreach prebuild, $(PREBUILD_TYPES), \
600 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(prebuild))_RULES :=)))
601$(foreach target, $(TARGET_TYPES), \
602 $(foreach compiler, $(COMPILER_TYPES), \
603 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(compiler))_RULES :=)))
604$(foreach target, $(TARGET_TYPES), \
605 $(foreach relocate, $(RELOCATE_TYPES), \
606 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(relocate))_RULES :=)))
607$(foreach target, $(TARGET_TYPES), \
608 $(foreach trace, $(TRACE_TYPES), \
609 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(trace))_RULES :=)))
610$(foreach target, $(TARGET_TYPES), \
611 $(foreach gc, $(GC_TYPES), \
612 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(gc))_RULES :=)))
613$(foreach target, $(TARGET_TYPES), \
614 $(foreach jni, $(JNI_TYPES), \
615 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(jni))_RULES :=)))
616$(foreach target, $(TARGET_TYPES), \
Alex Light03a112d2014-08-25 13:25:56 -0700617 $(foreach image, $(IMAGE_TYPES), \
618 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(image))_RULES :=)))
619$(foreach target, $(TARGET_TYPES), \
Ian Rogersf5c44b32014-08-19 16:52:36 -0700620 $(foreach test, $(TEST_ART_RUN_TESTS), \
621 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(test))_RULES :=)))
622$(foreach target, $(TARGET_TYPES), \
623 $(foreach address_size, $(ALL_ADDRESS_SIZES), \
624 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(address_size))_RULES :=)))
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100625$(foreach target, $(TARGET_TYPES), \
626 $(foreach run_type, $(RUN_TYPES), \
627 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(run_type))_RULES :=)))
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000628$(foreach target, $(TARGET_TYPES), \
629 $(foreach debuggable_type, $(DEBUGGABLE_TYPES), \
630 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(debuggable_type))_RULES :=)))
Ian Rogersafd9acc2014-06-17 08:21:54 -0700631
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700632# We need dex2oat and dalvikvm on the target as well as the core images (all images as we sync
633# only once).
634TEST_ART_TARGET_SYNC_DEPS += $(ART_TARGET_EXECUTABLES) $(TARGET_CORE_IMG_OUTS)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700635
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700636# Also need libarttest.
637TEST_ART_TARGET_SYNC_DEPS += $(ART_TARGET_TEST_OUT)/$(TARGET_ARCH)/libarttest.so
Mathieu Chartier031768a2015-08-27 10:25:02 -0700638TEST_ART_TARGET_SYNC_DEPS += $(ART_TARGET_TEST_OUT)/$(TARGET_ARCH)/libarttestd.so
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700639ifdef TARGET_2ND_ARCH
640TEST_ART_TARGET_SYNC_DEPS += $(ART_TARGET_TEST_OUT)/$(TARGET_2ND_ARCH)/libarttest.so
Mathieu Chartier031768a2015-08-27 10:25:02 -0700641TEST_ART_TARGET_SYNC_DEPS += $(ART_TARGET_TEST_OUT)/$(TARGET_2ND_ARCH)/libarttestd.so
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700642endif
643
Andreas Gampe855564b2014-07-25 02:32:19 -0700644# Also need libnativebridgetest.
645TEST_ART_TARGET_SYNC_DEPS += $(ART_TARGET_TEST_OUT)/$(TARGET_ARCH)/libnativebridgetest.so
646ifdef TARGET_2ND_ARCH
647TEST_ART_TARGET_SYNC_DEPS += $(ART_TARGET_TEST_OUT)/$(TARGET_2ND_ARCH)/libnativebridgetest.so
648endif
649
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700650# All tests require the host executables. The tests also depend on the core images, but on
651# specific version depending on the compiler.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700652ART_TEST_HOST_RUN_TEST_DEPENDENCIES := \
653 $(ART_HOST_EXECUTABLES) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700654 $(ART_HOST_OUT_SHARED_LIBRARIES)/libarttest$(ART_HOST_SHLIB_EXTENSION) \
Mathieu Chartier031768a2015-08-27 10:25:02 -0700655 $(ART_HOST_OUT_SHARED_LIBRARIES)/libarttestd$(ART_HOST_SHLIB_EXTENSION) \
Andreas Gampe855564b2014-07-25 02:32:19 -0700656 $(ART_HOST_OUT_SHARED_LIBRARIES)/libnativebridgetest$(ART_HOST_SHLIB_EXTENSION) \
Narayan Kamath67ef2c92015-11-16 10:17:35 +0000657 $(ART_HOST_OUT_SHARED_LIBRARIES)/libjavacore$(ART_HOST_SHLIB_EXTENSION) \
Andreas Gampe10edbb12016-01-06 17:59:49 -0800658 $(ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdk$(ART_HOST_SHLIB_EXTENSION) \
659 $(ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdkd$(ART_HOST_SHLIB_EXTENSION)
Ian Rogers665de8a2014-06-24 21:34:09 -0700660
661ifneq ($(HOST_PREFER_32_BIT),true)
662ART_TEST_HOST_RUN_TEST_DEPENDENCIES += \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700663 $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libarttest$(ART_HOST_SHLIB_EXTENSION) \
Mathieu Chartier031768a2015-08-27 10:25:02 -0700664 $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libarttestd$(ART_HOST_SHLIB_EXTENSION) \
Andreas Gampe855564b2014-07-25 02:32:19 -0700665 $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libnativebridgetest$(ART_HOST_SHLIB_EXTENSION) \
Narayan Kamath67ef2c92015-11-16 10:17:35 +0000666 $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libjavacore$(ART_HOST_SHLIB_EXTENSION) \
Andreas Gampe10edbb12016-01-06 17:59:49 -0800667 $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdk$(ART_HOST_SHLIB_EXTENSION) \
668 $(2ND_ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdkd$(ART_HOST_SHLIB_EXTENSION)
Ian Rogers665de8a2014-06-24 21:34:09 -0700669endif
Ian Rogersafd9acc2014-06-17 08:21:54 -0700670
Ian Rogersf5c44b32014-08-19 16:52:36 -0700671# Create a rule to build and run a tests following the form:
Calin Juravle9228b2a2014-10-22 15:54:34 +0100672# test-art-{1: host or target}-run-test-{2: debug ndebug}-{3: prebuild no-prebuild no-dex2oat}-
Nicolas Geoffray7db00cd2016-03-22 10:43:01 +0000673# {4: interpreter optimizing jit interp-ac}-
Igor Murashkin7617abd2015-07-10 18:27:47 -0700674# {5: relocate nrelocate relocate-npatchoat}-
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700675# {6: trace or ntrace}-{7: gcstress gcverify cms}-{8: forcecopy checkjni jni}-
676# {9: no-image image picimage}-{10: pictest npictest}-
677# {11: ndebuggable debuggable}-{12: test name}{13: 32 or 64}
Ian Rogersafd9acc2014-06-17 08:21:54 -0700678define define-test-art-run-test
Nicolas Geoffray611e1db2014-10-09 17:34:45 +0100679 run_test_options :=
Ian Rogersafd9acc2014-06-17 08:21:54 -0700680 prereq_rule :=
Ian Rogersf5c44b32014-08-19 16:52:36 -0700681 test_groups :=
682 uc_host_or_target :=
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100683 jack_classpath :=
Hiroshi Yamauchi1d4184d2015-07-13 17:11:22 -0700684 ifeq ($(ART_TEST_WITH_STRACE),true)
685 run_test_options += --strace
686 endif
Alex Lightbfac14a2014-07-30 09:41:21 -0700687 ifeq ($(ART_TEST_RUN_TEST_ALWAYS_CLEAN),true)
688 run_test_options += --always-clean
689 endif
Ian Rogersf5c44b32014-08-19 16:52:36 -0700690 ifeq ($(1),host)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700691 uc_host_or_target := HOST
Ian Rogersf5c44b32014-08-19 16:52:36 -0700692 test_groups := ART_RUN_TEST_HOST_RULES
Ian Rogersafd9acc2014-06-17 08:21:54 -0700693 run_test_options += --host
Yohann Roussel30486982015-07-21 16:25:44 +0200694 prereq_rule := $(ART_TEST_HOST_RUN_TEST_DEPENDENCIES) $(HOST_JACK_CLASSPATH_DEPENDENCIES)
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100695 jack_classpath := $(HOST_JACK_CLASSPATH)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700696 else
Ian Rogersf5c44b32014-08-19 16:52:36 -0700697 ifeq ($(1),target)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700698 uc_host_or_target := TARGET
Ian Rogersf5c44b32014-08-19 16:52:36 -0700699 test_groups := ART_RUN_TEST_TARGET_RULES
Yohann Roussel30486982015-07-21 16:25:44 +0200700 prereq_rule := test-art-target-sync $(TARGET_JACK_CLASSPATH_DEPENDENCIES)
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100701 jack_classpath := $(TARGET_JACK_CLASSPATH)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700702 else
Ian Rogersf5c44b32014-08-19 16:52:36 -0700703 $$(error found $(1) expected $(TARGET_TYPES))
Ian Rogersafd9acc2014-06-17 08:21:54 -0700704 endif
705 endif
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100706 ifeq ($(2),debug)
707 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_DEBUG_RULES
708 else
709 ifeq ($(2),ndebug)
710 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_RELEASE_RULES
711 run_test_options += -O
712 else
713 $$(error found $(2) expected $(RUN_TYPES))
714 endif
715 endif
716 ifeq ($(3),prebuild)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700717 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_PREBUILD_RULES
718 run_test_options += --prebuild
Alex Lighta59dd802014-07-02 16:28:08 -0700719 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100720 ifeq ($(3),no-prebuild)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700721 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_PREBUILD_RULES
722 run_test_options += --no-prebuild
Alex Lighta59dd802014-07-02 16:28:08 -0700723 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100724 ifeq ($(3),no-dex2oat)
Alex Light03a112d2014-08-25 13:25:56 -0700725 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_DEX2OAT_RULES
726 run_test_options += --no-prebuild --no-dex2oat
727 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100728 $$(error found $(3) expected $(PREBUILD_TYPES))
Alex Light03a112d2014-08-25 13:25:56 -0700729 endif
Alex Lighta59dd802014-07-02 16:28:08 -0700730 endif
731 endif
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100732 ifeq ($(4),optimizing)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700733 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_OPTIMIZING_RULES
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700734 run_test_options += --optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700735 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100736 ifeq ($(4),interpreter)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700737 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_INTERPRETER_RULES
Ian Rogersafd9acc2014-06-17 08:21:54 -0700738 run_test_options += --interpreter
Andreas Gampe825570c2015-07-26 10:26:03 -0700739 else ifeq ($(4),interp-ac)
Igor Murashkin7617abd2015-07-10 18:27:47 -0700740 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_INTERPRETER_ACCESS_CHECKS_RULES
741 run_test_options += --interpreter --verify-soft-fail
Ian Rogersafd9acc2014-06-17 08:21:54 -0700742 else
Nicolas Geoffray7db00cd2016-03-22 10:43:01 +0000743 ifeq ($(4),jit)
744 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_JIT_RULES
745 run_test_options += --jit
Ian Rogersafd9acc2014-06-17 08:21:54 -0700746 else
Nicolas Geoffray7db00cd2016-03-22 10:43:01 +0000747 $$(error found $(4) expected $(COMPILER_TYPES))
Ian Rogersafd9acc2014-06-17 08:21:54 -0700748 endif
749 endif
750 endif
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700751
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100752 ifeq ($(5),relocate)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700753 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_RELOCATE_RULES
754 run_test_options += --relocate
Ian Rogersafd9acc2014-06-17 08:21:54 -0700755 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100756 ifeq ($(5),no-relocate)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700757 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_RELOCATE_RULES
758 run_test_options += --no-relocate
759 else
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700760 ifeq ($(5),relocate-npatchoat)
Alex Light03a112d2014-08-25 13:25:56 -0700761 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_RELOCATE_NO_PATCHOAT_RULES
762 run_test_options += --relocate --no-patchoat
763 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100764 $$(error found $(5) expected $(RELOCATE_TYPES))
Alex Light03a112d2014-08-25 13:25:56 -0700765 endif
Ian Rogersafd9acc2014-06-17 08:21:54 -0700766 endif
767 endif
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100768 ifeq ($(6),trace)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700769 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_TRACE_RULES
Ian Rogers716e4f82014-07-16 11:18:03 -0700770 run_test_options += --trace
Ian Rogers716e4f82014-07-16 11:18:03 -0700771 else
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700772 ifeq ($(6),ntrace)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700773 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_TRACE_RULES
Ian Rogers701aa642014-07-18 11:38:13 -0700774 else
Andreas Gampe7526d782015-06-22 22:53:45 -0700775 ifeq ($(6),stream)
776 # Group streaming under normal tracing rules.
777 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_TRACE_RULES
778 run_test_options += --trace --stream
779 else
780 $$(error found $(6) expected $(TRACE_TYPES))
781 endif
Ian Rogersf5c44b32014-08-19 16:52:36 -0700782 endif
783 endif
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100784 ifeq ($(7),gcverify)
Ian Rogers86df3ac2014-08-27 10:54:11 -0700785 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_GCVERIFY_RULES
Ian Rogersf5c44b32014-08-19 16:52:36 -0700786 run_test_options += --gcverify
787 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100788 ifeq ($(7),gcstress)
Ian Rogers86df3ac2014-08-27 10:54:11 -0700789 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_GCSTRESS_RULES
Ian Rogersf5c44b32014-08-19 16:52:36 -0700790 run_test_options += --gcstress
791 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100792 ifeq ($(7),cms)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700793 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_CMS_RULES
Ian Rogers8a14b752014-07-18 15:06:53 -0700794 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100795 $$(error found $(7) expected $(GC_TYPES))
Ian Rogers701aa642014-07-18 11:38:13 -0700796 endif
Ian Rogers716e4f82014-07-16 11:18:03 -0700797 endif
798 endif
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100799 ifeq ($(8),forcecopy)
Ian Rogers86df3ac2014-08-27 10:54:11 -0700800 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_FORCECOPY_RULES
Ian Rogersf5c44b32014-08-19 16:52:36 -0700801 run_test_options += --runtime-option -Xjniopts:forcecopy
802 ifneq ($$(ART_TEST_JNI_FORCECOPY),true)
803 skip_test := true
804 endif
805 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100806 ifeq ($(8),checkjni)
Ian Rogers86df3ac2014-08-27 10:54:11 -0700807 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_CHECKJNI_RULES
Ian Rogersf5c44b32014-08-19 16:52:36 -0700808 run_test_options += --runtime-option -Xcheck:jni
809 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100810 ifeq ($(8),jni)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700811 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_JNI_RULES
812 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100813 $$(error found $(8) expected $(JNI_TYPES))
Ian Rogersf5c44b32014-08-19 16:52:36 -0700814 endif
815 endif
816 endif
Andreas Gampe8a159fd2015-09-21 15:14:38 -0700817 image_suffix := $(4)
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100818 ifeq ($(9),no-image)
Alex Light03a112d2014-08-25 13:25:56 -0700819 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NO_IMAGE_RULES
820 run_test_options += --no-image
Andreas Gampebf03e842014-10-29 20:46:17 -0700821 # Add the core dependency. This is required for pre-building.
822 ifeq ($(1),host)
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000823 prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_no-pic_$(13))
Andreas Gampebf03e842014-10-29 20:46:17 -0700824 else
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000825 prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_no-pic_$(13))
Andreas Gampebf03e842014-10-29 20:46:17 -0700826 endif
Alex Light03a112d2014-08-25 13:25:56 -0700827 else
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100828 ifeq ($(9),image)
Alex Light03a112d2014-08-25 13:25:56 -0700829 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_IMAGE_RULES
Andreas Gampec23c9c92014-10-28 14:47:25 -0700830 # Add the core dependency.
831 ifeq ($(1),host)
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000832 prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_no-pic_$(13))
Andreas Gampec23c9c92014-10-28 14:47:25 -0700833 else
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000834 prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_no-pic_$(13))
Andreas Gampec23c9c92014-10-28 14:47:25 -0700835 endif
Alex Light03a112d2014-08-25 13:25:56 -0700836 else
Andreas Gampec23c9c92014-10-28 14:47:25 -0700837 ifeq ($(9),picimage)
838 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_PICIMAGE_RULES
839 run_test_options += --pic-image
840 ifeq ($(1),host)
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000841 prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_pic_$(13))
Andreas Gampec23c9c92014-10-28 14:47:25 -0700842 else
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000843 prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_pic_$(13))
Andreas Gampec23c9c92014-10-28 14:47:25 -0700844 endif
845 else
Jeff Haodcdc85b2015-12-04 14:06:18 -0800846 ifeq ($(9),multiimage)
847 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_IMAGE_RULES
848 run_test_options += --multi-image
Roland Levillain3c36f662016-01-14 12:40:41 +0000849 ifeq ($(1),host)
850 prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_no-pic_multi_$(13))
851 else
852 prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_no-pic_multi_$(13))
853 endif
Jeff Haodcdc85b2015-12-04 14:06:18 -0800854 else
855 ifeq ($(9),multipicimage)
856 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_PICIMAGE_RULES
Roland Levillain3c36f662016-01-14 12:40:41 +0000857 run_test_options += --pic-image --multi-image
858 ifeq ($(1),host)
859 prereq_rule += $$(HOST_CORE_IMAGE_$$(image_suffix)_pic_multi_$(13))
860 else
861 prereq_rule += $$(TARGET_CORE_IMAGE_$$(image_suffix)_pic_multi_$(13))
862 endif
Jeff Haodcdc85b2015-12-04 14:06:18 -0800863 else
864 $$(error found $(9) expected $(IMAGE_TYPES))
865 endif
866 endif
Andreas Gampec23c9c92014-10-28 14:47:25 -0700867 endif
Alex Light03a112d2014-08-25 13:25:56 -0700868 endif
869 endif
Andreas Gampec23c9c92014-10-28 14:47:25 -0700870 ifeq ($(10),pictest)
871 run_test_options += --pic-test
872 else
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700873 ifeq ($(10),npictest)
Andreas Gampec23c9c92014-10-28 14:47:25 -0700874 # Nothing to be done.
875 else
876 $$(error found $(10) expected $(PICTEST_TYPES))
877 endif
878 endif
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000879 ifeq ($(11),debuggable)
880 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_DEBUGGABLE_RULES
881 run_test_options += --debuggable
882 else
Mathieu Chartier1445dd32015-03-20 14:29:51 -0700883 ifeq ($(11),ndebuggable)
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000884 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_NONDEBUGGABLE_RULES
885 # Nothing to be done.
886 else
887 $$(error found $(11) expected $(DEBUGGABLE_TYPES))
888 endif
889 endif
890 # $(12) is the test name.
891 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_$(call name-to-var,$(12))_RULES
892 ifeq ($(13),64)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700893 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_64_RULES
894 run_test_options += --64
895 else
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000896 ifeq ($(13),32)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700897 test_groups += ART_RUN_TEST_$$(uc_host_or_target)_32_RULES
898 else
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000899 $$(error found $(13) expected $(ALL_ADDRESS_SIZES))
Ian Rogersf5c44b32014-08-19 16:52:36 -0700900 endif
901 endif
Andreas Gampe4d2ef332015-08-05 09:24:45 -0700902 # Override of host instruction-set-features. Required to test advanced x86 intrinsics. The
903 # conditionals aren't really correct, they will fail to do the right thing on a 32-bit only
904 # host. However, this isn't common enough to worry here and make the conditions complicated.
905 ifneq ($(DEX2OAT_HOST_INSTRUCTION_SET_FEATURES),)
906 ifeq ($(13),64)
907 run_test_options += --instruction-set-features $(DEX2OAT_HOST_INSTRUCTION_SET_FEATURES)
908 endif
909 endif
910 ifneq ($($(HOST_2ND_ARCH_VAR_PREFIX)DEX2OAT_HOST_INSTRUCTION_SET_FEATURES),)
911 ifeq ($(13),32)
912 run_test_options += --instruction-set-features $($(HOST_2ND_ARCH_VAR_PREFIX)DEX2OAT_HOST_INSTRUCTION_SET_FEATURES)
913 endif
914 endif
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000915 run_test_rule_name := test-art-$(1)-run-test-$(2)-$(3)-$(4)-$(5)-$(6)-$(7)-$(8)-$(9)-$(10)-$(11)-$(12)$(13)
Ian Rogersf5c44b32014-08-19 16:52:36 -0700916 run_test_options := --output-path $(ART_HOST_TEST_DIR)/run-test-output/$$(run_test_rule_name) \
Ian Rogers5242c0a2014-07-18 11:02:19 -0700917 $$(run_test_options)
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000918 ifneq ($(ART_TEST_ANDROID_ROOT),)
919 run_test_options := --android-root $(ART_TEST_ANDROID_ROOT) $$(run_test_options)
920 endif
Alex Light91de25f2015-10-28 17:00:06 -0700921 ifeq ($(ART_TEST_QUIET),true)
922 run_test_options += --quiet
923 endif
Ian Rogersafd9acc2014-06-17 08:21:54 -0700924$$(run_test_rule_name): PRIVATE_RUN_TEST_OPTIONS := $$(run_test_options)
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100925$$(run_test_rule_name): PRIVATE_JACK_CLASSPATH := $$(jack_classpath)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700926.PHONY: $$(run_test_rule_name)
Yohann Roussel05b91252015-12-09 12:02:46 +0100927$$(run_test_rule_name): $(TEST_ART_RUN_TEST_DEPENDENCIES) $(HOST_OUT_EXECUTABLES)/hprof-conv $$(prereq_rule) | $(TEST_ART_RUN_TEST_ORDERONLY_DEPENDENCIES)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700928 $(hide) $$(call ART_TEST_SKIP,$$@) && \
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100929 DX=$(abspath $(DX)) \
930 JASMIN=$(abspath $(HOST_OUT_EXECUTABLES)/jasmin) \
Andreas Gampe8fda9f22014-10-03 16:15:37 -0700931 SMALI=$(abspath $(HOST_OUT_EXECUTABLES)/smali) \
932 DXMERGER=$(abspath $(HOST_OUT_EXECUTABLES)/dexmerger) \
Yohann Rousselcc6bb932016-01-19 23:29:29 +0100933 JACK_VERSION=$(JACK_DEFAULT_VERSION) \
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100934 JACK=$(abspath $(JACK)) \
Yohann Rousselaaa779a2016-01-19 17:07:18 +0100935 JACK_VERSION=$(JACK_DEFAULT_VERSION) \
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100936 JACK_CLASSPATH=$$(PRIVATE_JACK_CLASSPATH) \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000937 art/test/run-test $$(PRIVATE_RUN_TEST_OPTIONS) $(12) \
Ian Rogersafd9acc2014-06-17 08:21:54 -0700938 && $$(call ART_TEST_PASSED,$$@) || $$(call ART_TEST_FAILED,$$@)
939 $$(hide) (echo $(MAKECMDGOALS) | grep -q $$@ && \
940 echo "run-test run as top-level target, removing test directory $(ART_HOST_TEST_DIR)" && \
941 rm -r $(ART_HOST_TEST_DIR)) || true
942
Ian Rogersf5c44b32014-08-19 16:52:36 -0700943 $$(foreach test_group,$$(test_groups), $$(eval $$(value test_group) += $$(run_test_rule_name)))
Ian Rogersafd9acc2014-06-17 08:21:54 -0700944
945 # Clear locally defined variables.
Ian Rogersf5c44b32014-08-19 16:52:36 -0700946 uc_host_or_target :=
947 test_groups :=
Ian Rogersafd9acc2014-06-17 08:21:54 -0700948 run_test_options :=
949 run_test_rule_name :=
Ian Rogersafd9acc2014-06-17 08:21:54 -0700950 prereq_rule :=
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100951 jack_classpath :=
Ian Rogersafd9acc2014-06-17 08:21:54 -0700952endef # define-test-art-run-test
953
Ian Rogersf5c44b32014-08-19 16:52:36 -0700954$(foreach target, $(TARGET_TYPES), \
955 $(foreach test, $(TEST_ART_RUN_TESTS), \
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100956 $(foreach run_type, $(RUN_TYPES), \
957 $(foreach address_size, $(ADDRESS_SIZES_$(call name-to-var,$(target))), \
958 $(foreach prebuild, $(PREBUILD_TYPES), \
959 $(foreach compiler, $(COMPILER_TYPES), \
960 $(foreach relocate, $(RELOCATE_TYPES), \
961 $(foreach trace, $(TRACE_TYPES), \
962 $(foreach gc, $(GC_TYPES), \
963 $(foreach jni, $(JNI_TYPES), \
964 $(foreach image, $(IMAGE_TYPES), \
Andreas Gampec23c9c92014-10-28 14:47:25 -0700965 $(foreach pictest, $(PICTEST_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +0000966 $(foreach debuggable, $(DEBUGGABLE_TYPES), \
967 $(eval $(call define-test-art-run-test,$(target),$(run_type),$(prebuild),$(compiler),$(relocate),$(trace),$(gc),$(jni),$(image),$(pictest),$(debuggable),$(test),$(address_size))) \
968 )))))))))))))
Ian Rogersf5c44b32014-08-19 16:52:36 -0700969define-test-art-run-test :=
Ian Rogersf5c44b32014-08-19 16:52:36 -0700970
Ian Rogersafd9acc2014-06-17 08:21:54 -0700971# Define a phony rule whose purpose is to test its prerequisites.
Ian Rogersf5c44b32014-08-19 16:52:36 -0700972# $(1): host or target
Ian Rogersafd9acc2014-06-17 08:21:54 -0700973# $(2): list of prerequisites
Ian Rogersf5c44b32014-08-19 16:52:36 -0700974define define-test-art-run-test-group
Ian Rogersafd9acc2014-06-17 08:21:54 -0700975.PHONY: $(1)
976$(1): $(2)
977 $(hide) $$(call ART_TEST_PREREQ_FINISHED,$$@)
978
Ian Rogersafd9acc2014-06-17 08:21:54 -0700979endef # define-test-art-run-test-group
980
Ian Rogersafd9acc2014-06-17 08:21:54 -0700981
Ian Rogersf5c44b32014-08-19 16:52:36 -0700982$(foreach target, $(TARGET_TYPES), $(eval \
983 $(call define-test-art-run-test-group,test-art-$(target)-run-test,$(ART_RUN_TEST_$(call name-to-var,$(target))_RULES))))
984$(foreach target, $(TARGET_TYPES), \
985 $(foreach prebuild, $(PREBUILD_TYPES), $(eval \
986 $(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)))))
987$(foreach target, $(TARGET_TYPES), \
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +0100988 $(foreach run-type, $(RUN_TYPES), $(eval \
989 $(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)))))
990$(foreach target, $(TARGET_TYPES), \
Ian Rogersf5c44b32014-08-19 16:52:36 -0700991 $(foreach compiler, $(COMPILER_TYPES), $(eval \
992 $(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)))))
993$(foreach target, $(TARGET_TYPES), \
994 $(foreach relocate, $(RELOCATE_TYPES), $(eval \
995 $(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)))))
996$(foreach target, $(TARGET_TYPES), \
997 $(foreach trace, $(TRACE_TYPES), $(eval \
998 $(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)))))
999$(foreach target, $(TARGET_TYPES), \
1000 $(foreach gc, $(GC_TYPES), $(eval \
1001 $(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)))))
1002$(foreach target, $(TARGET_TYPES), \
1003 $(foreach jni, $(JNI_TYPES), $(eval \
1004 $(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)))))
1005$(foreach target, $(TARGET_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +00001006 $(foreach debuggable, $(DEBUGGABLE_TYPES), $(eval \
1007 $(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)))))
1008$(foreach target, $(TARGET_TYPES), \
Alex Light03a112d2014-08-25 13:25:56 -07001009 $(foreach image, $(IMAGE_TYPES), $(eval \
1010 $(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)))))
1011$(foreach target, $(TARGET_TYPES), \
Ian Rogersf5c44b32014-08-19 16:52:36 -07001012 $(foreach test, $(TEST_ART_RUN_TESTS), $(eval \
1013 $(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)))))
1014$(foreach target, $(TARGET_TYPES), \
Ian Rogers86df3ac2014-08-27 10:54:11 -07001015 $(foreach address_size, $(ADDRESS_SIZES_$(call name-to-var,$(target))), $(eval \
Ian Rogersa3cf6ce2014-10-02 16:35:52 -07001016 $(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 Rogersafd9acc2014-06-17 08:21:54 -07001017
Ian Rogersf5c44b32014-08-19 16:52:36 -07001018# Clear variables now we're finished with them.
1019$(foreach target, $(TARGET_TYPES), $(eval ART_RUN_TEST_$(call name-to-var,$(target))_RULES :=))
1020$(foreach target, $(TARGET_TYPES), \
1021 $(foreach prebuild, $(PREBUILD_TYPES), \
1022 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(prebuild))_RULES :=)))
1023$(foreach target, $(TARGET_TYPES), \
1024 $(foreach compiler, $(COMPILER_TYPES), \
1025 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(compiler))_RULES :=)))
1026$(foreach target, $(TARGET_TYPES), \
1027 $(foreach relocate, $(RELOCATE_TYPES), \
1028 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(relocate))_RULES :=)))
1029$(foreach target, $(TARGET_TYPES), \
1030 $(foreach trace, $(TRACE_TYPES), \
1031 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(trace))_RULES :=)))
1032$(foreach target, $(TARGET_TYPES), \
1033 $(foreach gc, $(GC_TYPES), \
1034 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(gc))_RULES :=)))
1035$(foreach target, $(TARGET_TYPES), \
1036 $(foreach jni, $(JNI_TYPES), \
1037 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(jni))_RULES :=)))
1038$(foreach target, $(TARGET_TYPES), \
Nicolas Geoffray43c162f2015-03-09 12:21:26 +00001039 $(foreach debuggable, $(DEBUGGABLE_TYPES), \
1040 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(debuggable))_RULES :=)))
1041$(foreach target, $(TARGET_TYPES), \
Alex Light03a112d2014-08-25 13:25:56 -07001042 $(foreach image, $(IMAGE_TYPES), \
1043 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(image))_RULES :=)))
1044$(foreach target, $(TARGET_TYPES), \
Ian Rogersf5c44b32014-08-19 16:52:36 -07001045 $(foreach test, $(TEST_ART_RUN_TESTS), \
1046 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(test))_RULES :=)))
1047$(foreach target, $(TARGET_TYPES), \
1048 $(foreach address_size, $(ALL_ADDRESS_SIZES), \
1049 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(address_size))_RULES :=)))
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +01001050$(foreach target, $(TARGET_TYPES), \
1051 $(foreach run_type, $(RUN_TYPES), \
1052 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(run_type))_RULES :=)))
Ian Rogersafd9acc2014-06-17 08:21:54 -07001053define-test-art-run-test-group :=
Ian Rogersf5c44b32014-08-19 16:52:36 -07001054TARGET_TYPES :=
1055PREBUILD_TYPES :=
1056COMPILER_TYPES :=
1057RELOCATE_TYPES :=
1058TRACE_TYPES :=
1059GC_TYPES :=
1060JNI_TYPES :=
Alex Light03a112d2014-08-25 13:25:56 -07001061IMAGE_TYPES :=
Ian Rogers86df3ac2014-08-27 10:54:11 -07001062ADDRESS_SIZES_TARGET :=
1063ADDRESS_SIZES_HOST :=
Ian Rogersf5c44b32014-08-19 16:52:36 -07001064ALL_ADDRESS_SIZES :=
Nicolas Geoffraybd2c63c2014-10-16 18:04:12 +01001065RUN_TYPES :=
Nicolas Geoffray43c162f2015-03-09 12:21:26 +00001066DEBUGGABLE_TYPES :=
Ian Rogers9fcaa4b2014-08-26 19:59:52 -07001067
1068include $(LOCAL_PATH)/Android.libarttest.mk
1069include art/test/Android.libnativebridgetest.mk