Set locale when running tests

This commit is contained in:
Bruce Hill 2025-03-07 15:16:14 -05:00
parent bae4ae1a6a
commit 17a6313d28

View File

@ -57,7 +57,7 @@ tags:
%.tm.testresult: %.tm tomo
@printf '\x1b[33;1;4m%s\x1b[m\n' $<
@set -o pipefail; \
if ! VERBOSE=0 COLOR=1 CC=gcc ./tomo -O 1 $< 2>&1 | tee $@; then \
if ! VERBOSE=0 COLOR=1 LC_ALL=C CC=gcc ./tomo -O 1 $< 2>&1 | tee $@; then \
rm -f $@; \
false; \
fi