X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=tests%2FMakefile;h=2fdb8aafbaf661290bcfde7434d1853626765025;hb=refs%2Fmerge-requests%2F10%2Fhead;hp=fd802f60fc9301081b0ebf364ffcb4eeb6b175d6;hpb=196a9e1a4960e01dcf4af9aef01a8daf3b5cbbc8;p=open-adventure.git diff --git a/tests/Makefile b/tests/Makefile index fd802f6..2fdb8aa 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -20,7 +20,7 @@ all: listcheck regress .SUFFIXES: .chk clean: - rm -fr *~ + rm -fr *~ adventure.text adventure.data # Show summary lines for all tests. testlist: @@ -33,19 +33,23 @@ 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; \ 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