diff options
author | Ian Rogers <irogers@google.com> | 2014-09-26 15:55:25 -0700 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2014-09-26 15:55:25 -0700 |
commit | b5594ba8a0713ad65413dfabc67ac4cb325383e6 (patch) | |
tree | 9ece0ff7900cdbc526817b287c23a28ca9e08237 /Android.mk | |
parent | 8f0bbd235c30c99f16e10100036537dd0c0080b5 (diff) | |
download | art-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.mk | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 |