shithub: rgbds

Download patch

ref: 579a324ce74da5c89271f5d0132697f0c59e7875
parent: 7903c14993dd6b5fdaaed6664fd6a8878b227ffd
author: ISSOtm <eldredhabert0@gmail.com>
date: Sun Feb 9 08:58:47 EST 2020

Fix diffing bin files in RGBASM tests

--- a/test/asm/test.sh
+++ b/test/asm/test.sh
@@ -58,9 +58,7 @@
 		if [ -f $bin ]; then
 			../../rgblink -o $gb $o > $output 2>&1
 			dd if=$gb count=1 bs=$(printf %s $(wc -c < $bin)) > $output 2>/dev/null
-			hexdump -C $output > $input && mv $input $output
-			hexdump -C $bin > $input
-			tryCmp $input $output
+			tryCmp $bin $output
 			our_rc=$(($? || $our_rc))
 		fi