BR3392232: Fix relocations in MachO64
[nasm.git] / test / nasmformat.asm
blobea19b923ed4e52fbe2f8898b93227b7d06ddf578
1 ;Testname=obj; Arguments=-fobj -onasmfomat.o; Files=stdout stderr nasmfomat.o
2 ;Testname=bin; Arguments=-fbin -onasmfomat.o; Files=stdout stderr nasmfomat.o
3 ;Testname=rdf; Arguments=-frdf -onasmfomat.o; Files=stdout stderr nasmfomat.o
5 %if __OUTPUT_FORMAT__ == 'bin'
7 db 'This is binary format file'
9 %elif __OUTPUT_FORMAT__ == 'obj'
11 db 'This is object format file'
13 %else
15 db 'This is some other format file'
17 %endif