summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEksperimental <eksperimental@users.noreply.github.com>2018-10-22 19:08:14 +0700
committerAndrea Leopardi <an.leopardi@gmail.com>2018-10-22 14:08:14 +0200
commit6b99ed9d00051ddd90314dbb304a4cf7448c4e5d (patch)
treecaf4c7bd52ccb650a028a49c3c5d28ed33e837dc
parent3b61d2dd9d4a91e89c24235e0ede6bb82c211b9f (diff)
downloadelixir-6b99ed9d00051ddd90314dbb304a4cf7448c4e5d.tar.gz
Add new line after make test_* tasks are executed (#8316)
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index adb6fc7e9..420997fc2 100644
--- a/Makefile
+++ b/Makefile
@@ -48,6 +48,7 @@ lib/$(1)/ebin/Elixir.$(2).beam: $(wildcard lib/$(1)/lib/*.ex) $(wildcard lib/$(1
test_$(1): compile $(1)
@ echo "==> $(1) (ex_unit)"
$(Q) cd lib/$(1) && ../../bin/elixir -r "test/test_helper.exs" -pr "test/**/*_test.exs";
+ @ echo ""
endef
#==> Compilation tasks
@@ -238,6 +239,7 @@ test_stdlib: compile
else \
cd lib/elixir && ../../bin/elixir -r "test/elixir/test_helper.exs" -pr "test/elixir/**/*_test.exs"; \
fi
+ @ echo ""
#==> Dialyzer tasks