open-adventure/tests
2017-05-26 08:54:23 +03:00
..
adventure.data Fixed test suit: advent needs adventure.data or adventure.txt in current directory to run successfully 2017-05-26 08:54:23 +03:00
death-jump.chk Fixed test suit: advent needs adventure.data or adventure.txt in current directory to run successfully 2017-05-26 08:54:23 +03:00
death-jump.log Fixed test suit: advent needs adventure.data or adventure.txt in current directory to run successfully 2017-05-26 08:54:23 +03:00
dwarf.chk Fixed test suit: advent needs adventure.data or adventure.txt in current directory to run successfully 2017-05-26 08:54:23 +03:00
dwarf.log First version of regression tests. 2017-05-26 00:22:51 -04:00
Makefile Fixed test suit: advent needs adventure.data or adventure.txt in current directory to run successfully 2017-05-26 08:54:23 +03:00
quit.chk Fixed test suit: advent needs adventure.data or adventure.txt in current directory to run successfully 2017-05-26 08:54:23 +03:00
quit.log Fixed test suit: advent needs adventure.data or adventure.txt in current directory to run successfully 2017-05-26 08:54:23 +03:00
README Document test comment format. 2017-05-26 00:40:35 -04:00

= Notes on the test machinery = 

A .tst extension means it's a game log
A .chk extension means it's expected output from a test

In general, a file named foo.chk is the expected output from theb game log
foo.log.  To add new tests, just drop log files in this directory.

To see summary lines from all tests, 'make testlist'.  The summary lines
are those led with ##; you should have one such descriptive line at the
head of the file.

To run the tests, "make regress".

To remake the check files, "make buildregress".

// end