diff options
-rw-r--r-- | test/core_app.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core_app.mk b/test/core_app.mk index 4e0d1eb..f95d593 100644 --- a/test/core_app.mk +++ b/test/core_app.mk @@ -994,7 +994,7 @@ core-app-pt: build clean-core-app-pt $t echo "COMPILE_FIRST += my_pt" >> $(APP)/Makefile $i "Build the application; confirm the parse_transform is used" - $t $(MAKE) -C $(APP) | grep "*** Running my_pt parse_transform." + $t $(MAKE) -C $(APP) | grep "Running my_pt parse_transform." $i "Check that the application was compiled correctly" $t $(ERL) -pa $(APP)/ebin/ -eval " \ @@ -1034,7 +1034,7 @@ core-app-pt-erlc-opts: build clean-core-app-pt-erlc-opts $t echo "ERLC_OPTS += +'{parse_transform, my_pt}'" >> $(APP)/Makefile $i "Build the application; confirm the parse_transform is used" - $t $(MAKE) -C $(APP) | grep "*** Running my_pt parse_transform." + $t $(MAKE) -C $(APP) | grep "Running my_pt parse_transform." $i "Check that the application was compiled correctly" $t $(ERL) -pa $(APP)/ebin/ -eval " \ |