Test coverage of -s and -l options.
[open-adventure.git] / tests / Makefile
1 # Test-suite makefile for reposurgeon
2
3 # Use absolute path so tests that change working directory still use 
4 # scripts from parent directory.  Note that using $PWD seems to fail
5 # here under Gitlab's CI environment.
6 PATH := $(realpath ..):$(realpath .):${PATH}
7
8 # Defeat annoying behavior under Mac OS X - builtin echo doesn't do -n
9 ECHO := /bin/echo
10
11 all: regress
12         @echo "=== No diff output is good news."
13
14 .SUFFIXES: .chk
15
16 clean:
17         rm -fr *~ adventure.text *.adv scratch.tmp
18
19 # Show summary lines for all tests.
20 testlist:
21         @grep '^##' *.log
22 listcheck:
23         @for f in *.log; do \
24             if ( head -3 $$f | grep -q '^ *##' ); then :; else echo "$$f needs a description"; fi; \
25         done
26
27 # General regression testing of commands and output; look at the *.log and
28 # corresponding *.chk files to see which tests this runs.
29 TESTLOADS := $(shell ls -1 *.log | sed '/.log/s///' | sort)
30 buildregress:
31         @for file in $(TESTLOADS); do \
32             echo "Remaking $${file}.chk"; \
33             OPTS=`sed -n /#options:/s///p <$${file}.log`; \
34             advent $$OPTS <$${file}.log >$${file}.chk 2>&1 || exit 1; \
35         done; \
36         rm -f scratch.tmp
37 regress:
38         @for file in $(TESTLOADS); do \
39             $(ECHO) -n "  $${file} "; grep '##' $${file}.log  || echo ' ## (no description)'; \
40             OPTS=`sed -n /#options:/s///p <$${file}.log`; \
41             if advent $$OPTS < $${file}.log >/tmp/regress$$$$ 2>&1; \
42             then diff --text -u $${file}.chk /tmp/regress$$$$ || exit 1; \
43             else echo "*** Nonzero return status on $${file}!"; exit 1; fi \
44         done; \
45         rm -f scratch.tmp /tmp/regress$$$$
46
47 # end