2008-10-07 09:27:30 +08:00
|
|
|
;Testname=obj; Arguments=-fobj -onasmfomat.o; Files=stdout stderr nasmfomat.o
|
|
|
|
;Testname=bin; Arguments=-fbin -onasmfomat.o; Files=stdout stderr nasmfomat.o
|
|
|
|
;Testname=rdf; Arguments=-frdf -onasmfomat.o; Files=stdout stderr nasmfomat.o
|
2003-09-24 18:30:56 +08:00
|
|
|
|
2003-09-25 19:43:28 +08:00
|
|
|
%if __OUTPUT_FORMAT__ == 'bin'
|
2003-09-24 18:30:56 +08:00
|
|
|
|
|
|
|
db 'This is binary format file'
|
|
|
|
|
2003-09-25 19:43:28 +08:00
|
|
|
%elif __OUTPUT_FORMAT__ == 'obj'
|
2003-09-24 18:30:56 +08:00
|
|
|
|
|
|
|
db 'This is object format file'
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
db 'This is some other format file'
|
|
|
|
|
|
|
|
%endif
|