From: mrdudz Date: Sat, 22 Nov 2014 20:29:26 +0000 (+0100) Subject: added readme X-Git-Tag: V2.15~29^2~12 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9fe0b3817728156f7e0d51f78e66bb67eec9932a;p=cc65 added readme --- diff --git a/test/readme.txt b/test/readme.txt new file mode 100644 index 000000000..308b2fa90 --- /dev/null +++ b/test/readme.txt @@ -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. diff --git a/test/todo b/test/todo index e69de29bb..911eacdd3 100644 --- a/test/todo +++ b/test/todo @@ -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