summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-10-18 18:13:10 -0700
committerElliott Hughes <enh@google.com>2012-10-18 18:13:10 -0700
commitc5cd6e8f15ce352d009a0d12291e14f321b76d11 (patch)
tree8b1b74d3fca10c944c79af8a164a769b3be731ba /Android.mk
parent42dac9f1555c348823bebe91dba0ea06eaa4584d (diff)
downloadlibcore-c5cd6e8f15ce352d009a0d12291e14f321b76d11.zip
libcore-c5cd6e8f15ce352d009a0d12291e14f321b76d11.tar.gz
libcore-c5cd6e8f15ce352d009a0d12291e14f321b76d11.tar.bz2
Fix LIBCORE_SKIP_TESTS without causing warnings.
Change-Id: I45609998bf46d6937a041b9fb25200a98a026b04
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk4
1 files changed, 1 insertions, 3 deletions
diff --git a/Android.mk b/Android.mk
index 235410c..18cf576 100644
--- a/Android.mk
+++ b/Android.mk
@@ -36,15 +36,13 @@ include $(LOCAL_PATH)/NativeCode.mk
include $(LOCAL_PATH)/CaCerts.mk
#
-# Disable test modules if LIBCORE_SKIP_TESTS envar is set
+# Disable test modules if LIBCORE_SKIP_TESTS environment variable is set.
#
ifneq ($(LIBCORE_SKIP_TESTS),)
$(info ********************************************************************************)
$(info * libcore tests are skipped because environment variable LIBCORE_SKIP_TESTS=$(LIBCORE_SKIP_TESTS))
$(info ********************************************************************************)
-ALL_MODULE_TAGS := $(filter-out tests,$(ALL_MODULE_TAGS))
-ALL_MODULES := $(filter-out $(ALL_MODULE_NAME_TAGS.tests),$(ALL_MODULES))
endif