X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=tests%2FMakefile;h=4ab1b4cee1b859dd65536eddb82e802c60715bd9;hb=4ab32f98a6e92952c00dd26cec61ecd3d3cc80dd;hp=fd802f60fc9301081b0ebf364ffcb4eeb6b175d6;hpb=894724d1c844f769a4a7a67047adf82bcbd8ad75;p=open-adventure.git diff --git a/tests/Makefile b/tests/Makefile index fd802f6..4ab1b4c 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -11,16 +11,13 @@ PATH := $(realpath ..):$(realpath .):${PATH} # Defeat annoying behavior under Mac OS X - builtin echo doesn't do -n ECHO := /bin/echo -default: - make -e --quiet all - -all: listcheck regress +all: regress @echo "=== No diff output is good news." .SUFFIXES: .chk clean: - rm -fr *~ + rm -fr *~ adventure.text adventure.data # Show summary lines for all tests. testlist: @@ -33,19 +30,22 @@ listcheck: # General regression testing of commands and output; look at the *.log and # corresponding *.chk files to see which tests this runs. TESTLOADS := $(shell ls -1 *.log | sed '/.log/s///') -buildregress: +buildregress: adventure.data @for file in $(TESTLOADS); do \ echo "Remaking $${file}.chk"; \ - $(REPOSURGEON) advent <$${file}.log >$${file}.chk \ - 2>&1 || exit 1; \ + advent <$${file}.log >$${file}.chk 2>&1 || exit 1; \ done -regress: +regress: adventure.data @for file in $(TESTLOADS); do \ $(ECHO) -n " $${file} "; grep --text '##' $${file}.log || echo ' ## (no description)'; \ - if advent $${file}.log >/tmp/regress$$$$ 2>&1; \ + if advent < $${file}.log >/tmp/regress$$$$ 2>&1; \ then diff --text -u $${file}.chk /tmp/regress$$$$ || exit 1; \ else echo "*** Nonzero return status on $${file}!"; exit 1; fi \ done @rm -f /tmp/regress$$$$ +adventure.data: + cp "$(realpath ..)"/adventure.text . + timeout 1 advent >/dev/null 2>&1; true + # end