Home | History | Annotate | Download | only in art

Lines Matching defs:run

79 	adb shell rm data/run-test/test-*/dalvik-cache/*@classes.dex
112 # "mm test-art" to build and run all tests on host and device
125 .PHONY: test-art-run-test
126 test-art-run-test: test-art-host-run-test test-art-target-run-test
127 @echo test-art-run-test PASSED
132 # "mm test-art-host" to build and run all host tests
134 test-art-host: test-art-host-gtest test-art-host-oat test-art-host-run-test
138 test-art-host-interpreter: test-art-host-oat-interpreter test-art-host-run-test-interpreter
148 define run-host-gtests-with
152 # "mm valgrind-test-art-host-gtest" to build and run the host gtests under valgrind.
155 $(call run-host-gtests-with,valgrind --leak-check=full)
170 define declare-test-art-host-run-test
171 .PHONY: test-art-host-run-test-default-$(1)
172 test-art-host-run-test-default-$(1): test-art-host-dependencies
173 art/test/run-test --host $(1)
174 @echo test-art-host-run-test-default-$(1) PASSED
176 TEST_ART_HOST_RUN_TEST_DEFAULT_TARGETS += test-art-host-run-test-default-$(1)
178 .PHONY: test-art-host-run-test-interpreter-$(1)
179 test-art-host-run-test-interpreter-$(1): test-art-host-dependencies
180 art/test/run-test --host --interpreter $(1)
181 @echo test-art-host-run-test-interpreter-$(1) PASSED
183 TEST_ART_HOST_RUN_TEST_INTERPRETER_TARGETS += test-art-host-run-test-interpreter-$(1)
185 .PHONY: test-art-host-run-test-$(1)
186 test-art-host-run-test-$(1): test-art-host-run-test-default-$(1) test-art-host-run-test-interpreter-$(1)
190 $(foreach test, $(wildcard art/test/[0-9]*), $(eval $(call declare-test-art-host-run-test,$(notdir $(test)))))
192 .PHONY: test-art-host-run-test-default
193 test-art-host-run-test-default: $(TEST_ART_HOST_RUN_TEST_DEFAULT_TARGETS)
194 @echo test-art-host-run-test-default PASSED
196 .PHONY: test-art-host-run-test-interpreter
197 test-art-host-run-test-interpreter: $(TEST_ART_HOST_RUN_TEST_INTERPRETER_TARGETS)
198 @echo test-art-host-run-test-interpreter PASSED
200 .PHONY: test-art-host-run-test
201 test-art-host-run-test: test-art-host-run-test-default test-art-host-run-test-interpreter
202 @echo test-art-host-run-test PASSED
207 # "mm test-art-target" to build and run all target tests
209 test-art-target: test-art-target-gtest test-art-target-oat test-art-target-run-test
228 define declare-test-art-target-run-test
229 .PHONY: test-art-target-run-test-$(1)
230 test-art-target-run-test-$(1): test-art-target-sync
231 art/test/run-test $(1)
232 @echo test-art-target-run-test-$(1) PASSED
234 TEST_ART_TARGET_RUN_TEST_TARGETS += test-art-target-run-test-$(1)
236 test-art-run-test-$(1): test-art-host-run-test-$(1) test-art-target-run-test-$(1)
240 $(foreach test, $(wildcard art/test/[0-9]*), $(eval $(call declare-test-art-target-run-test,$(notdir $(test)))))
242 .PHONY: test-art-target-run-test
243 test-art-target-run-test: $(TEST_ART_TARGET_RUN_TEST_TARGETS)
244 @echo test-art-target-run-test PASSED