nasm/test/new
H. Peter Anvin 733cbb3197 test: change .stdout/.stderr to stdout/stderr
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>
2008-10-06 18:28:42 -07:00

9 lines
215 B
Bash
Executable file

#!/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