aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-10-29 17:46:33 +0300
committerLoïc Hoguin <[email protected]>2016-10-29 17:46:33 +0300
commite602fa7c7feb5c0153c5c4de573b54180f4732d2 (patch)
treea728145e57006319dbfa6f207986c5f0ff4cae7b
parentcb2f3039633f09e99dc99d03301ef6d57bb33a95 (diff)
downloaderlang.mk-e602fa7c7feb5c0153c5c4de573b54180f4732d2.tar.gz
erlang.mk-e602fa7c7feb5c0153c5c4de573b54180f4732d2.tar.bz2
erlang.mk-e602fa7c7feb5c0153c5c4de573b54180f4732d2.zip
Small tweak to make it easier for me to notice test failures
-rw-r--r--test/core_app.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core_app.mk b/test/core_app.mk
index 36c7438..ae09e7c 100644
--- a/test/core_app.mk
+++ b/test/core_app.mk
@@ -1138,7 +1138,7 @@ core-app-pt: build clean
"-module(my_pt)." \
"-export([parse_transform/2])." \
"parse_transform(Forms, _) ->" \
- " io:format(\"*** Running my_pt parse_transform.~n\")," \
+ " io:format(\"# Running my_pt parse_transform.~n\")," \
" Forms." > $(APP)/src/my_pt.erl
$i "Generate a .erl file that uses the my_pt parse_transform"
@@ -1176,7 +1176,7 @@ core-app-pt-erlc-opts: build clean
"-module(my_pt)." \
"-export([parse_transform/2])." \
"parse_transform(Forms, _) ->" \
- " io:format(\"*** Running my_pt parse_transform.~n\")," \
+ " io:format(\"# Running my_pt parse_transform.~n\")," \
" Forms." > $(APP)/deps/my_pt_dep/src/my_pt.erl
$i "Add my_pt_dep to the list of dependencies"