diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-08-20 23:21:33 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-08-20 23:21:33 -0400 |
commit | d1b01c84b6fbe4e31310f7bb70ce3bd9765b4a81 (patch) | |
tree | eefe6d1ab688e8569bf0b3cd6288b27f64c35aa1 /tests/markup-parse.c | |
parent | 7ee28860791eebb40693dfd29572a0e3ab5e6844 (diff) | |
download | pango-d1b01c84b6fbe4e31310f7bb70ce3bd9765b4a81.tar.gz |
tests: Use en_US.UTF8 instead of C
The C locale gives us heartburn wrt to any
non-ASCII chars.
Diffstat (limited to 'tests/markup-parse.c')
-rw-r--r-- | tests/markup-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/markup-parse.c b/tests/markup-parse.c index fbe14402..b3248671 100644 --- a/tests/markup-parse.c +++ b/tests/markup-parse.c @@ -261,7 +261,7 @@ main (int argc, char *argv[]) const gchar *name; gchar *path; - g_setenv ("LC_ALL", "C", TRUE); + g_setenv ("LC_ALL", "en_US.UTF8", TRUE); setlocale (LC_ALL, ""); /* allow to easily generate expected output for new test cases */ |