mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
13 lines
235 B
Bash
Executable File
13 lines
235 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
|
|
printf '%s...\n' "$f"
|
|
./rgbgfx_test "$f" || rc=$?
|
|
done
|
|
|
|
exit $rc
|