mirror of
https://github.com/cc65/cc65.git
synced 2024-11-17 09:07:32 +00:00
.. | ||
control | ||
ref | ||
001-macro-simple-listing.s | ||
002-macro-param-listing.s | ||
010-paramcount.s | ||
020-asciiz.s | ||
030-assert-success.s | ||
031-assert-error.s | ||
032-assert-error2.s | ||
032-assert-error3.s | ||
032-assert-error4.s | ||
032-assert-error5.s | ||
032-assert-error6.s | ||
032-assert-error7.s | ||
032-assert-error8.s | ||
033-assert-ldwarning-success.s | ||
034-assert-lderror1.s | ||
034-assert-lderror2.s | ||
034-assert-lderror3.s | ||
034-assert-lderror4.s | ||
034-assert-lderror5.s | ||
034-assert-lderror6.s | ||
034-assert-lderror7.s | ||
034-assert-lderror8.s | ||
040-align.s | ||
050-case-off-2.s | ||
050-case-off-3.s | ||
050-case-off-4.s | ||
050-case-on-1.s | ||
050-case-on-2.s | ||
050-case-on-3.s | ||
050-case-on-4.s | ||
050-case-on-5.s | ||
100-byte.s | ||
101-byt.s | ||
102-word.s | ||
103-dbyt.s | ||
104-dword.s | ||
105-faraddr.s | ||
106-hibytes.s | ||
107-lobytes.s | ||
108-long-rts.s | ||
109-brk-signature.s | ||
200-overwrite.cfg | ||
200-overwrite.s | ||
201-overwrite-overflow.cfg | ||
201-overwrite-overflow.s | ||
Makefile | ||
readme.txt |
Overall test: ------------- These testcases can be used to test different aspects of the assembler. The name of a test is everything in the form <test>.s. If a custom linker configuration is needed, also include <test>.cfg. The following reference files can be added: - ref/<test>.bin-ref: This is a reference for the resulting binary. The binary as binary tested against this file. If they are not equal, the test fails. - ref/<test>.list-ref This is a reference for the resulting listing output This file *must* have the first line of the listing removed, as that contains a ca65 version string, and almost always this will be changed! - ref/<test>.err-ref This is a reference for the resulting ca65 stdout (>) output. - ref/<test>.err2-ref This is a reference for the resulting ca65 stderr (2>) output. - ref/<test>.ld65err-ref This is a reference for the resutling ld65 stdout (>) output. - ref/<test>.ld65err2-ref This is a reference for the resulting ld65 stderr (2>) output. The following control files can be added to control the tests. These files are empty (contents ignored), and only the filename is used: - control/<test>.err Test is expected to produce an error. - control/<test>.no-ld65 Skip the ld65 step. Note that the resulting .bin file is generated twice: Once with no listing file, and once with listing file. This way, one can find out if the listing file generation changes anything with the resulting binary output.