test/fwdoptpp: test %error, %warning, %fatal

Test all of %error, %warning, and %fatal.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2008-09-24 00:30:46 -07:00
parent e2ee25a7e1
commit 9ebf2cb938

View File

@ -1,4 +1,15 @@
;Testname=test; Arguments=-fbin -ofwdoptpp.bin; Files=.stdout .stderr fwdoptpp.bin
;Testname=error; Arguments=-fbin -DERROR -ofwdoptpp.bin; Files=.stdout .stderr fwdoptpp.bin
;Testname=fatal; Arguments=-fbin -DFATAL -ofwdoptpp.bin; Files=.stdout .stderr fwdoptpp.bin
;Testname=warning; Arguments=-fbin -DWARNING -ofwdoptpp.bin; Files=.stdout .stderr fwdoptpp.bin
%ifndef ERROR
%ifndef FATAL
%ifndef WARNING
%define ERROR 1
%endif
%endif
%endif
n0: jmp n1
n1: jmp n2
n2: jmp n3
@ -129,5 +140,11 @@ n126: jmp n127
n127: jmp n0
%if ($-$$) > 257
%fatal "Out of space!"
%ifdef FATAL
%fatal "Out of space!"
%elifdef ERROR
%error "Out of space!"
%elifdef WARNING
%warning "Out of space!"
%endif
%endif