summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Boichat <drinkcat@chromium.org>2018-12-26 13:35:52 +0800
committerchrome-bot <chrome-bot@chromium.org>2018-12-28 00:43:08 -0800
commit8123080f146d712ca0942873584c8a0f1f489237 (patch)
treee0875e998ac5b04ce70440ff35efe7c2dd251215
parent5cc18122ec756633abd58da03e81fc1ee62e3c0e (diff)
downloadchrome-ec-8123080f146d712ca0942873584c8a0f1f489237.tar.gz
Makefile: Drop warning about using ASAN by default
The warning is distracting in build output. If TEST_FUZZ is set, it is sensible to use TEST_ASAN by default, let's not print any warning. BRANCH=none BUG=none TEST=make buildall -j >/dev/null => No more warnings. Change-Id: I8875b7f63154a4e051a5bb29f6640d4ee2923c19 Signed-off-by: Nicolas Boichat <drinkcat@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1389990 Tested-by: Allen Webb <allenwebb@google.com> Reviewed-by: Allen Webb <allenwebb@google.com>
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6f9984cf8a..d2dc18e3ba 100644
--- a/Makefile
+++ b/Makefile
@@ -54,7 +54,6 @@ TOUCHPAD_FW ?=
# If TEST_FUZZ is set make sure at least one sanitizer is enabled.
ifeq ($(TEST_FUZZ)_$(TEST_ASAN)$(TEST_MSAN)$(TEST_UBSAN),y_)
-$(warning No sanitizer was specified defaulting to address sanitization.)
override TEST_ASAN:=y
endif