From 114beb9eab06acb6b06a117cb610ab49454c764a Mon Sep 17 00:00:00 2001 From: Max Schillinger Date: Sat, 11 May 2024 08:45:17 +0200 Subject: [PATCH] parse test: Export LC_ALL=C for an env independent sort order --- test/parse.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/parse.sh b/test/parse.sh index 8f16c16..27f4f0f 100755 --- a/test/parse.sh +++ b/test/parse.sh @@ -2,6 +2,7 @@ projectdir="$(cd -P -- "$(dirname -- "$(dirname -- "$0")")" && pwd -P)" book=/tmp/book.txt rm $book 2> /dev/null +export LC_ALL=C cat "test/sample1" | "$projectdir/emailbook" "$book" --parse --all diff -s "$book" "$projectdir/test/book-expected.txt" \ && printf "\nTEST SUCCESSFUL\n" \ -- 2.45.2