Change state of vase

Clear temporary save where it needs to be cleared instead of random places
This commit is contained in:
NHOrus 2017-07-01 18:23:51 +03:00
parent ab79fc7814
commit 3c8482a613
3 changed files with 20 additions and 16 deletions

View file

@ -70,7 +70,7 @@ savecheck: savegames
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 < pitfall.log > /tmp/coverage_advent_readfail 2>&1 || exit 1
rm -f scratch.tmp /tmp/coverage*
rm -f /tmp/coverage*
# General regression testing of commands and output; look at the *.log and
# corresponding *.chk files to see which tests this runs.
@ -82,6 +82,6 @@ regress:
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$$$$
rm -f scratch.tmp /tmp/regress$$$$
# end