Current section

Files

Jump to
ltest priv make test.mk
Raw

priv/make/test.mk

CWD := $(CURDIR)
compile-tests:
@rebar3 as test do clean, compile
check-runner-ltest: export CODE_PATH = _build/test/lib/*/ebin _build/test/plugins/*/ebin
check-runner-ltest: compile-tests
@clear
@erl -pa ${CODE_PATH} -cwd "${CWD}" -listener ltest-listener -eval \
"case 'ltest-runner':all() of ok -> halt(0); _ -> halt(127) end" \
-noshell
check-runner-ltest-no-color: export CODE_PATH = _build/test/lib/*/ebin
check-runner-ltest-no-color: compile-tests
@clear
@erl -pa ${CODE_PATH} \
-cwd "${CWD}" -listener ltest-listener -color false -eval \
"case 'ltest-runner':all() of ok -> halt(0); _ -> halt(127) end" \
-noshell
check-runner-eunit: export CODE_PATH = _build/test/lib/*/ebin
check-runner-eunit: compile-tests
@erl -pa ${CODE_PATH} -cwd "${CWD}" -listener eunit_progress -eval \
"case 'ltest-runner':all() of ok -> halt(0); _ -> halt(127) end" \
-noshell