From 194297377d00935a4d5df2d162871b0da930f1d5 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 27 May 2017 15:18:17 +0000 Subject: make tests: remove failed .out. * Makefile (%.ok): If the .out file differs from .expected, don't just fail this rule. Remove the .out file also, so that when "make tests" is repeated, the test is re-run to regenerate it. Otherwise "make tests" will only run diff again on the previously generated .out file. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 681fbede..531395cd 100644 --- a/Makefile +++ b/Makefile @@ -358,7 +358,10 @@ tst/%.out: %.tl $(V)mv $(TESTS_TMP) $@ %.ok: %.out - $(V)diff -u $(patsubst tst/%.out,%.expected,$<) $< + $(V)if ! diff -u $(patsubst tst/%.out,%.expected,$<) $< ; then \ + rm $< ; \ + exit 1 ; \ + fi $(V)touch $@ %.expected: %.out -- cgit v1.2.3