diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 6f3b0bec..a726c5de 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -142,6 +142,7 @@ jobs: shell: bash run: | cp bins/* . + cp bins/*.dll test/gfx test/run-tests.sh windows-xbuild: diff --git a/test/gfx/test.sh b/test/gfx/test.sh index 5e2cf933..57b5ad7d 100755 --- a/test/gfx/test.sh +++ b/test/gfx/test.sh @@ -5,7 +5,8 @@ rc=0 for f in *.bin; do - ./rgbgfx_test "$f" || rc=1 + printf '%s...\n' "$f" + ./rgbgfx_test "$f" || rc=$? done exit $rc