Simplify the test makefile.

This commit is contained in:
Eric S. Raymond 2017-05-27 10:31:16 -04:00
parent 67b8d38f53
commit 708d728bb5

View file

@ -36,8 +36,7 @@ TESTLOADS := $(shell ls -1 *.log | sed '/.log/s///')
buildregress: adventure.data buildregress: adventure.data
@for file in $(TESTLOADS); do \ @for file in $(TESTLOADS); do \
echo "Remaking $${file}.chk"; \ echo "Remaking $${file}.chk"; \
$(REPOSURGEON) advent <$${file}.log >$${file}.chk \ advent <$${file}.log >$${file}.chk 2>&1 || exit 1; \
2>&1 || exit 1; \
done done
regress: adventure.data regress: adventure.data
@for file in $(TESTLOADS); do \ @for file in $(TESTLOADS); do \