From: Eric S. Raymond Date: Wed, 28 Jun 2017 17:18:07 +0000 (-0400) Subject: Repair test breakage from previous commit. X-Git-Tag: 1.1~49 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=783e2e5e2dd6ea8fa19069efc1512952ac020ad0 Repair test breakage from previous commit. --- diff --git a/tests/Makefile b/tests/Makefile index b9df1c8..dfea613 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -54,11 +54,11 @@ regress: savegames $(ECHO) "TEST cheat: Fail to save to invalid path" ../cheat -o / 2> /tmp/coverage_cheat_badoutput | true $(ECHO) "TEST advent: Start with invalid file with -r" - advent -r /badfilename < quit.log > /tmp/coverage_advent_readfail 2>&1 || exit 1 + advent -r /badfilename < pitfall.log > /tmp/coverage_advent_readfail 2>&1 || exit 1 $(ECHO) "TEST advent: Start with invalid file with -r" - advent -l / < quit.log > /tmp/coverage_advent_logfail 2>&1 || exit 1 + advent -l / < pitfall.log > /tmp/coverage_advent_logfail 2>&1 || exit 1 $(ECHO) "TEST advent: Test -r with valid input" - advent -r thousand_saves.adv < quit.log > /tmp/coverage_advent_readfail 2>&1 || exit 1 + advent -r thousand_saves.adv < pitfall.log > /tmp/coverage_advent_readfail 2>&1 || exit 1 @for file in $(TESTLOADS); do \ $(ECHO) -n " $${file} "; grep '##' $${file}.log || echo ' ## (no description)'; \ OPTS=`sed -n /#options:/s///p <$${file}.log`; \