Add script to update references of rgbasm tests

Update test references.

Signed-off-by: AntonioND <antonio_nd@outlook.com>
This commit is contained in:
AntonioND
2017-04-03 21:35:40 +01:00
parent e16af28676
commit f14b061ea7
3 changed files with 11 additions and 1 deletions

8
test/asm/update-refs.sh Normal file
View File

@@ -0,0 +1,8 @@
fname=$(mktemp)
for i in *.asm; do
../../rgbasm $i >$fname 2>&1
mv -f $fname ${i%.asm}.out
done
exit 0