Files
rgbds/test/gfx/test.sh
2022-07-02 17:04:17 +02:00

12 lines
211 B
Bash
Executable File

#!/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
./rgbgfx_test "$f" || rc=1
done
exit $rc