From f2e70e2d197dc3fd8a54276dd31362e7f1ab4d21 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Mon, 26 Feb 2024 22:33:18 +0100 Subject: [PATCH] join: avoid test failure on systems with no French UTF-8 locale * tests/misc/join-utf8.sh: Test the value of LOCALE_FR_UTF8 against 'none', not against a missing value. Fixes https://bugs.gnu.org/69418 --- tests/misc/join-utf8.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/misc/join-utf8.sh b/tests/misc/join-utf8.sh index 2dbe2bb815..9af9e55ce2 100755 --- a/tests/misc/join-utf8.sh +++ b/tests/misc/join-utf8.sh @@ -19,7 +19,7 @@ . "${srcdir=.}/tests/init.sh"; path_prepend_ ./src print_ver_ join -test "${LOCALE_FR_UTF8+set}" = set || skip_ "French UTF-8 locale not available" +test "$LOCALE_FR_UTF8" != none || skip_ "French UTF-8 locale not available" LC_ALL=$LOCALE_FR_UTF8 export LC_ALL -- 2.47.2