summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-09-26 15:55:25 -0700
committerIan Rogers <irogers@google.com>2014-09-26 15:55:25 -0700
commitb5594ba8a0713ad65413dfabc67ac4cb325383e6 (patch)
tree9ece0ff7900cdbc526817b287c23a28ca9e08237 /Android.mk
parent8f0bbd235c30c99f16e10100036537dd0c0080b5 (diff)
downloadart-b5594ba8a0713ad65413dfabc67ac4cb325383e6.zip
art-b5594ba8a0713ad65413dfabc67ac4cb325383e6.tar.gz
art-b5594ba8a0713ad65413dfabc67ac4cb325383e6.tar.bz2
Fix make test exclusion bugs.
Change-Id: I439c3670a01096355c50774c628d6b0f6cb6c397
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk5
1 files changed, 2 insertions, 3 deletions
diff --git a/Android.mk b/Android.mk
index 7d36659..1edd543 100644
--- a/Android.mk
+++ b/Android.mk
@@ -25,15 +25,14 @@ art_path := $(LOCAL_PATH)
include $(art_path)/build/Android.common_path.mk
# Following the example of build's dont_bother for clean targets.
-art_done_bother := false
+art_dont_bother := false
ifneq (,$(filter clean-oat%,$(MAKECMDGOALS)))
art_dont_bother := true
endif
# Don't bother with tests unless there is a test-art* or build-art* target.
art_test_bother := false
-$(info $(MAKECMDGOALS))
-ifneq (,$(filter test-art% build-art%,$(MAKECMDGOALS)))
+ifneq (,$(filter %tests test-art% build-art%,$(MAKECMDGOALS)))
art_test_bother := true
endif