aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-05-06 12:51:22 +0200
committerLoïc Hoguin <[email protected]>2019-05-06 12:51:22 +0200
commit1062b83bf10ea0b62f590c6ff06ec7ee398cfdb8 (patch)
tree9af5b2ccda58f47410d0ea37f40b372acd9a1698 /Makefile
parentea7b1bbf9ae26f0dc77d04565f67293776a65f56 (diff)
downloadranch-1062b83bf10ea0b62f590c6ff06ec7ee398cfdb8.tar.gz
ranch-1062b83bf10ea0b62f590c6ff06ec7ee398cfdb8.tar.bz2
ranch-1062b83bf10ea0b62f590c6ff06ec7ee398cfdb8.zip
Initial havoc test suite
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}'