aboutsummaryrefslogtreecommitdiffstats
path: root/test/new
blob: 403b4fb7cc4179011f4c3ae9055271bedf9aac6c (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
for f; do
  if [ -e "$f".asm ]; then
    # For safety...
    echo "$0: $f already exists" 1>&2
    exit 1
  fi
  echo ";Testname=test; Arguments=-fbin -o$f.bin; Files=stdout stderr $f.bin" > "$f".asm
done