mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-25 04:22:07 +00:00
Add more tests for RGBASM coverage
This commit is contained in:
10
test/asm/disable-warnings.asm
Normal file
10
test/asm/disable-warnings.asm
Normal 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
|
||||
Reference in New Issue
Block a user