aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-05-08 13:59:30 +0200
committerLoïc Hoguin <[email protected]>2019-05-08 13:59:30 +0200
commit3e62d24573c91c04eb9af5d7ba47f2c16d1948de (patch)
treef05e959928c3383594ec1383c96525fa965a74b0 /Makefile
parentcee8c6625bd7a09db88daf5e9767cced66fb5c15 (diff)
downloadgun-3e62d24573c91c04eb9af5d7ba47f2c16d1948de.tar.gz
gun-3e62d24573c91c04eb9af5d7ba47f2c16d1948de.tar.bz2
gun-3e62d24573c91c04eb9af5d7ba47f2c16d1948de.zip
Don't run the autobahn test suite by default
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b5b85b2..8410fde 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,12 @@ AUTO_CI_WINDOWS ?= OTP-20+
include erlang.mk
+# Don't run the autobahn test suite by default.
+
+ifndef FULL
+CT_SUITES := $(filter-out ws_autobahn,$(CT_SUITES))
+endif
+
# Enable eunit.
TEST_ERLC_OPTS += +'{parse_transform, eunit_autoexport}'