From 01cf0c5f98ffae99a85a32457f0310f17b748326 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Sun, 1 May 2022 15:31:56 +0200 Subject: [PATCH] Print RGBGFX test names --- .github/workflows/testing.yml | 1 + test/gfx/test.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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