Skip to content

Commit

Permalink
testsuite: try different locale on Mac OS (refs #5)
Browse files Browse the repository at this point in the history
hopefully fixes the Unicode test cases on Mac OS
  • Loading branch information
rhaberkorn committed Sep 9, 2024
1 parent afb86d8 commit 4789e39
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/atlocal.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,12 @@ G_ENABLE_DIAGNOSTIC=1

# For the Unicode tests - makes sure that UTF-8 characters
# are accepted on command lines.
LC_ALL=C.UTF-8
case $host in
*-*-darwin*)
LANG=C
LC_CTYPE=UTF-8
;;
*)
LC_ALL=C.UTF-8
;;
esac

0 comments on commit 4789e39

Please sign in to comment.