aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7eb5eb4..f0f261b 100644
--- a/Makefile
+++ b/Makefile
@@ -16,8 +16,9 @@ LOCAL_DEPS = ssl
DOC_DEPS = asciideck
-TEST_DEPS = $(if $(CI_ERLANG_MK),ci.erlang.mk) ct_helper
+TEST_DEPS = $(if $(CI_ERLANG_MK),ci.erlang.mk) ct_helper havoc
dep_ct_helper = git https://github.com/ninenines/ct_helper master
+dep_havoc = git https://github.com/ankhers/havoc master
# CI configuration.
@@ -33,6 +34,12 @@ AUTO_CI_WINDOWS ?= OTP-19+
include erlang.mk
+# Don't run the havoc test suite by default.
+
+ifndef FULL
+CT_SUITES := $(filter-out havoc,$(CT_SUITES))
+endif
+
# Compile options.
TEST_ERLC_OPTS += +'{parse_transform, eunit_autoexport}'