repo.or.cz
/
nasm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
preproc: add dummy %pragma directive
[nasm.git]
/
test
/
new
blob
403b4fb7cc4179011f4c3ae9055271bedf9aac6c
1
#!/bin/sh
2
for
f
;
do
3
if
[
-e
"
$f
"
.asm
];
then
4
# For safety...
5
echo
"
$0
:
$f
already exists"
1
>&
2
6
exit
1
7
fi
8
echo
";Testname=test; Arguments=-fbin -o
$f
.bin; Files=stdout stderr
$f
.bin"
>
"
$f
"
.asm
9
done