summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
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