Skip to content

Commit

Permalink
More indication of success/failure in display test
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Dec 27, 2023
1 parent b704160 commit 6e3b84d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,12 @@ DISPLAY_NON_GENERATED_VO := $(filter-out $(DISPLAY_GENERATED_VO),$(DISPLAY_NON_J

.PHONY: $(DISPLAY_VO:.vo=.log.diff)
$(DISPLAY_VO:.vo=.log.diff) : %.log.diff : %.log %.log.expected
diff $*.log.expected $*.log
$(SHOW)'DIFF $*'
$(HIDE)if diff $*.log.expected $*.log; then \
echo '$* PASSED'; \
else \
echo '$* FAILED'; \
fi

c: $(filter-out $(UNMADE_C_FILES),$(DISPLAY_NON_JAVA_VO:Display.vo=.c) $(DISPLAY_NON_GENERATED_VO:Display.vo=.h))

Expand Down

0 comments on commit 6e3b84d

Please sign in to comment.