mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
733cbb3197
Using hidden files are rather antisocial, and rather pointless in this particular context. Change .stdout and .stderr to simply stdout and stderr. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
18 lines
418 B
NASM
18 lines
418 B
NASM
;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
|
|
|
|
%if __OUTPUT_FORMAT__ == 'bin'
|
|
|
|
db 'This is binary format file'
|
|
|
|
%elif __OUTPUT_FORMAT__ == 'obj'
|
|
|
|
db 'This is object format file'
|
|
|
|
%else
|
|
|
|
db 'This is some other format file'
|
|
|
|
%endif
|