Add more tests for RGBASM coverage

This commit is contained in:
Rangi42
2025-09-25 12:21:08 -04:00
parent 96b953fe51
commit 0297da4d4c
29 changed files with 112 additions and 19 deletions

View File

@@ -0,0 +1,10 @@
MACRO test
assert warn, 0, "-Wassert is on by default"
warn "-Wuser is on by default"
ENDM
test ; no warnings because of -w
OPT -Weverything
test ; still no warnings because of -w
OPT Werror=everything
test ; now errors can occur