From e233c5d256dd42a77612e39c5c7160aa92b4a4d4 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Sun, 22 Mar 2020 10:43:06 +0100 Subject: [PATCH] Don't drop RGBLINK output in RGBASM tests --- test/asm/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/asm/test.sh b/test/asm/test.sh index fefa43d4..b8c6b93d 100755 --- a/test/asm/test.sh +++ b/test/asm/test.sh @@ -56,7 +56,7 @@ for i in *.asm; do bin=${i%.asm}.out.bin 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 tryCmp $bin $output our_rc=$(($? || $our_rc))