From eb796229035cc484d06620e83febd236e89e734c Mon Sep 17 00:00:00 2001 From: David Kubecka Date: Sat, 28 Mar 2015 12:51:52 +0100 Subject: [PATCH] Allow running specific retest suites --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac1cb7e..ed8dd48 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ OTPVSNCMD='io:fwrite("~s",[rebar_utils:otp_release()]), halt().' OTPVSN=$(shell erl -pa ebin/ -noshell -eval $(OTPVSNCMD)) PLT_FILENAME=~/.dialyzer_rebar_$(OTPVSN)_plt LOG_LEVEL?=debug +RT_TARGETS?=inttest all: ./bootstrap @@ -73,6 +74,6 @@ test_eunit: all @$(REBAR) eunit test_inttest: all deps - @$(RETEST) -l $(LOG_LEVEL) inttest + @$(RETEST) -l $(LOG_LEVEL) $(RT_TARGETS) travis: clean debug xref clean all deps test