diff options
author | Mike FABIAN <mfabian@redhat.com> | 2017-08-12 17:15:25 +0200 |
---|---|---|
committer | Mike FABIAN <mfabian@redhat.com> | 2017-08-12 17:20:24 +0200 |
commit | a6bd872286b981b08577218c00e1ea693bad6095 (patch) | |
tree | 0300489261a3d652f5011af864515ba30a4ebd18 /stdlib/tst-strfmon_l.c | |
parent | d68b451903acfa1f8c64bb168b2cbe78beeacb3d (diff) | |
download | glibc-a6bd872286b981b08577218c00e1ea693bad6095.tar.gz glibc-a6bd872286b981b08577218c00e1ea693bad6095.tar.xz glibc-a6bd872286b981b08577218c00e1ea693bad6095.zip |
Adapt test case data to the changes in the thousands separators
[BZ #20756] * localedata/tst-langinfo.sh: Adapt test case data. * stdlib/tst-strfmon_l.c: Likewise. * stdlib/tst-strtod4.c: Likewise. * stdlib/tst-strtod5i.c: Likewise.
Diffstat (limited to 'stdlib/tst-strfmon_l.c')
-rw-r--r-- | stdlib/tst-strfmon_l.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/tst-strfmon_l.c b/stdlib/tst-strfmon_l.c index ed7d486960..dff186f97a 100644 --- a/stdlib/tst-strfmon_l.c +++ b/stdlib/tst-strfmon_l.c @@ -150,11 +150,11 @@ static const struct locale_pair tests[] = "tg_TJ.UTF-8", { { - "1 234 567.89 TJS", "1 234 567.89 \u0440\u0443\u0431", + "1\u202f234\u202f567.89 TJS", "1\u202f234\u202f567.89 \u0440\u0443\u0431", "1234567.89 TJS", "1234567.89 \u0440\u0443\u0431" }, { - "-1 234 567.89 TJS", "-1 234 567.89 \u0440\u0443\u0431", + "-1\u202f234\u202f567.89 TJS", "-1\u202f234\u202f567.89 \u0440\u0443\u0431", "-1234567.89 TJS", "-1234567.89 \u0440\u0443\u0431" } } @@ -163,11 +163,11 @@ static const struct locale_pair tests[] = "hr_HR.UTF-8", { { - "HRK 1 234 567,89", "Kn 1 234 567,89", + "HRK 1\u202f234\u202f567,89", "Kn 1\u202f234\u202f567,89", "HRK 1234567,89", "Kn 1234567,89" }, { - "-HRK 1 234 567,89", "-Kn 1 234 567,89", + "-HRK 1\u202f234\u202f567,89", "-Kn 1\u202f234\u202f567,89", "-HRK 1234567,89", "-Kn 1234567,89" } } |