From 6e3b84ddb486613be65bfa69991643060b17c8b2 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Wed, 27 Dec 2023 13:16:20 -0800 Subject: [PATCH] More indication of success/failure in display test --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 860fd46a7f..a3760a201c 100644 --- a/Makefile +++ b/Makefile @@ -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))