Allow running specific retest suites

This commit is contained in:
David Kubecka 2015-03-28 12:51:52 +01:00
parent c3b09ba170
commit eb79622903

View file

@ -6,6 +6,7 @@ OTPVSNCMD='io:fwrite("~s",[rebar_utils:otp_release()]), halt().'
OTPVSN=$(shell erl -pa ebin/ -noshell -eval $(OTPVSNCMD)) OTPVSN=$(shell erl -pa ebin/ -noshell -eval $(OTPVSNCMD))
PLT_FILENAME=~/.dialyzer_rebar_$(OTPVSN)_plt PLT_FILENAME=~/.dialyzer_rebar_$(OTPVSN)_plt
LOG_LEVEL?=debug LOG_LEVEL?=debug
RT_TARGETS?=inttest
all: all:
./bootstrap ./bootstrap
@ -73,6 +74,6 @@ test_eunit: all
@$(REBAR) eunit @$(REBAR) eunit
test_inttest: all deps test_inttest: all deps
@$(RETEST) -l $(LOG_LEVEL) inttest @$(RETEST) -l $(LOG_LEVEL) $(RT_TARGETS)
travis: clean debug xref clean all deps test travis: clean debug xref clean all deps test