tests: test.sh: actually includes localization variables

This commit is contained in:
Emma Tebibyte 2024-05-27 22:23:49 -06:00
parent 94ada03ce4
commit 787f0dc6e2
Signed by: emma
GPG Key ID: 06FA419A1698C270

View File

@ -15,7 +15,7 @@ export BIN=build/bin
if ! ls Makefile >/dev/null 2>&1 if ! ls Makefile >/dev/null 2>&1
then then
printf '%s: %s.\n' "$0" "$RUN_ERR" 1>&2 printf '%s: %s\n' "$0" "$RUN_ERR" 1>&2
exit 1 exit 1
fi fi
@ -30,7 +30,7 @@ done
for test in tests/posix/*.sh; do for test in tests/posix/*.sh; do
export PATH="$BIN:$PATH" export PATH="$BIN:$PATH"
printf '%s: %s: Testing utility.\n' "$0" "$test" printf '%s: %s: %s\n' "$0" "$test" "$TEST_STR"
"$utility" "$utility"
printf '\n' printf '\n'
done done