From 17a6313d28b6d179632798eaa24518b1d8166e88 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 7 Mar 2025 15:16:14 -0500 Subject: [PATCH] Set locale when running tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a208c76..e0774c8 100644 --- a/Makefile +++ b/Makefile @@ -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