From c0bcb411756f881ac330271c8d5ad5d1d54457a5 Mon Sep 17 00:00:00 2001 From: Carsten Grohmann Date: Thu, 20 May 2021 14:19:50 +0200 Subject: [PATCH] Increase test robustness by adding LC_ALL=C (#1660) Use C locale, because some tests check for English expressions Fixes #1658 --- test/test-utils.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test-utils.sh b/test/test-utils.sh index 2dbe112..1290925 100644 --- a/test/test-utils.sh +++ b/test/test-utils.sh @@ -37,6 +37,8 @@ BIG_FILE_BLOCK_SIZE=$((25 * 1024 * 1024)) BIG_FILE_COUNT=1 # This should be greater than the multipart size BIG_FILE_LENGTH=$(($BIG_FILE_BLOCK_SIZE * $BIG_FILE_COUNT)) +# Use C locale, because some tests check for English expressions +export LC_ALL=C export RUN_DIR # [NOTE]