1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 02:29:32 +00:00

added readme

This commit is contained in:
mrdudz 2014-11-22 21:29:26 +01:00
parent 4a9346d631
commit 9fe0b38177
2 changed files with 26 additions and 0 deletions

16
test/readme.txt Normal file
View File

@ -0,0 +1,16 @@
This directory contains test code for automatic regression testing of the CC65
compiler.
/val - the bulk of tests are contained here, individual tests should exit with
an exit code of EXIT_SUCCESS when they pass, or EXIT_FAILURE on error
/ref - these tests produce output that must be compared with reference output
/err - contains tests that MUST NOT compile
/misc - a few tests that need special care of some sort
to run the tests use "make clean all" in this (top) directory, the makefile
should exit with no error.

View File

@ -0,0 +1,10 @@
- the tests in ./misc need special care
- check all tests in ./ref and make them return their results as exit code
- in ./val use some other tool than "diff" for comparing the results
- fixup makefiles to use "del" instead of "rm -f" on windows
- reduce usage of "common.h" to a minimum