diff options
| author | 2014-09-26 15:55:25 -0700 | |
|---|---|---|
| committer | 2014-09-26 15:55:25 -0700 | |
| commit | b5594ba8a0713ad65413dfabc67ac4cb325383e6 (patch) | |
| tree | 9ece0ff7900cdbc526817b287c23a28ca9e08237 | |
| parent | 8f0bbd235c30c99f16e10100036537dd0c0080b5 (diff) | |
Fix make test exclusion bugs.
Change-Id: I439c3670a01096355c50774c628d6b0f6cb6c397
| -rw-r--r-- | Android.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Android.mk b/Android.mk index 7d36659513..1edd543eb9 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 |