summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Webb <allenwebb@google.com>2019-01-07 12:40:10 -0800
committerchrome-bot <chrome-bot@chromium.org>2019-01-07 19:40:51 -0800
commit1d9dbd408f7d837cb2725ed0e37d775967f6bb21 (patch)
tree0587553fea567db983bd30f32aa35a231f6764fa
parent1f7de7c939c1f0bf318f4d8b6012183d5755df91 (diff)
downloadchrome-ec-1d9dbd408f7d837cb2725ed0e37d775967f6bb21.tar.gz
Remove fuzzer test runs from buildall.
This removes the test runs for fuzzer targets temporarily until crbug.com/918662 is resolved. BRANCH=None BUG=chromium:918662 TEST=make -j buildall Change-Id: I80b9c4cd403924e41704462277da6d288796abc8 Signed-off-by: Allen Webb <allenwebb@google.com> Reviewed-on: https://chromium-review.googlesource.com/1399201 Reviewed-by: Manoj Gupta <manojgupta@chromium.org>
-rw-r--r--Makefile.rules4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index bf7680cd43..035339fa30 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -271,7 +271,9 @@ $(run-test-targets): run-%: host-%
# Fuzzing tests
fuzz-test-targets=$(foreach t,$(fuzz-test-list-host),host-$(t))
-run-fuzz-test-targets=$(foreach t,$(fuzz-test-list-host),run-$(t))
+# TODO(crbug.com/918662) Enable fuzz test runs once they are fixed for the new
+# compiler
+run-fuzz-test-targets=#$(foreach t,$(fuzz-test-list-host),run-$(t))
.PHONY: $(fuzz-test-targets) $(run-fuzz-test-targets)