]> git.sur5r.net Git - cc65/commitdiff
added readme
authormrdudz <mrdudz@users.noreply.github.com>
Sat, 22 Nov 2014 20:29:26 +0000 (21:29 +0100)
committermrdudz <mrdudz@users.noreply.github.com>
Sat, 22 Nov 2014 20:29:26 +0000 (21:29 +0100)
test/readme.txt [new file with mode: 0644]
test/todo

diff --git a/test/readme.txt b/test/readme.txt
new file mode 100644 (file)
index 0000000..308b2fa
--- /dev/null
@@ -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.
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..911eacdd36595d1eb2c5081efbb7cdf6df412c22 100644 (file)
--- 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