Bump save file version number.
[open-adventure.git] / tests / Makefile
index be71aa232e124dca580c220964084443c03f44b3..62075159918bc3eb3b7dea589e977564409b6e32 100644 (file)
@@ -4,6 +4,7 @@
 # scripts from parent directory.  Note that using $PWD seems to fail
 # here under Gitlab's CI environment.
 PATH := $(realpath ..):$(realpath .):${PATH}
+GCOV?=gcov
 
 # Defeat annoying behavior under Mac OS X - builtin echo doesn't do -n
 ECHO := /bin/echo
@@ -20,7 +21,7 @@ check: savecheck regress
        @-advent -l /dev/null <pitfall.log >/dev/null
 
 coverage: check
-       lcov -t "advent" -o ../advent.info -c -d ..
+       lcov -t "advent" -o ../advent.info -c -d .. --gcov-tool=$(GCOV)
        genhtml -o ../coverage/ ../advent.info
 
 .SUFFIXES: .chk
@@ -44,6 +45,10 @@ savegames:
        ../cheat -v -1337 -o resume_badversion.adv > /tmp/cheat_badversion
        $(ECHO) "cheat: Generate save file 1000 saves"
        ../cheat -s -1000 -o thousand_saves.adv > /tmp/cheat_1000saves
+       $(ECHO) "cheat: Generate save file 1000 turns"
+       ../cheat -t -1000 -o thousand_saves.adv > /tmp/cheat_1000turns
+       $(ECHO) "cheat: Generate save file 1000 turns"
+       ../cheat -l -1000 -o thousand_lamp.adv > /tmp/cheat_1000lamp
        rm -f /tmp/cheat*