shithub: rgbds

ref: c4359c1058e7459c41ca0a7d45c48d6a94f5370b
dir: /test/gfx/test.sh/

View raw version
#!/usr/bin/env bash

[[ -e ./rgbgfx_test ]] || make -C ../.. test/gfx/rgbgfx_test
[[ -e ./randtilegen ]] || make -C ../.. test/gfx/randtilegen

rc=0
for f in *.bin; do
	printf '%s...\n' "$f"
	./rgbgfx_test "$f" || rc=$?
done

exit $rc