Don't drop RGBLINK output in RGBASM tests

This commit is contained in:
ISSOtm
2020-03-22 10:43:06 +01:00
parent fe824e0068
commit e233c5d256

View File

@@ -56,7 +56,7 @@ for i in *.asm; do
bin=${i%.asm}.out.bin bin=${i%.asm}.out.bin
if [ -f $bin ]; then if [ -f $bin ]; then
../../rgblink -o $gb $o > $output 2>&1 ../../rgblink -o $gb $o
dd if=$gb count=1 bs=$(printf %s $(wc -c < $bin)) > $output 2>/dev/null dd if=$gb count=1 bs=$(printf %s $(wc -c < $bin)) > $output 2>/dev/null
tryCmp $bin $output tryCmp $bin $output
our_rc=$(($? || $our_rc)) our_rc=$(($? || $our_rc))