From 787f0dc6e2d6b7cf3318fa22d46b17b8cd6f6a20 Mon Sep 17 00:00:00 2001 From: emma Date: Mon, 27 May 2024 22:23:49 -0600 Subject: [PATCH] tests: test.sh: actually includes localization variables --- tests/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test.sh b/tests/test.sh index 47a57a3..0d39dff 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -15,7 +15,7 @@ export BIN=build/bin if ! ls Makefile >/dev/null 2>&1 then - printf '%s: %s.\n' "$0" "$RUN_ERR" 1>&2 + printf '%s: %s\n' "$0" "$RUN_ERR" 1>&2 exit 1 fi @@ -30,7 +30,7 @@ done for test in tests/posix/*.sh; do export PATH="$BIN:$PATH" - printf '%s: %s: Testing utility.\n' "$0" "$test" + printf '%s: %s: %s\n' "$0" "$test" "$TEST_STR" "$utility" printf '\n' done