Makefile: Align test result text for better readability

This commit is contained in:
Alex Palaistras 2016-03-19 11:37:23 +00:00
parent 9d8de835fd
commit 7257ea0902
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ $(TESTS):
@$(FAWKSS) $@.test.$(TMPPID) > $@.actual.$(TMPPID)
$(eval te = $(shell date +"%s%3N"))
@printf ">> $(BOLD)Testing file '$@'...$(RESET) "
@printf ">> $(BOLD)Testing file '$@'...$(RESET)\t"
# Generate diff between expected and actual results and print back to user.
@result=$$($(DIFF) -ud $@.expected.$(TMPPID) $@.actual.$(TMPPID) | tail -n +3); \