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-strtod5i.c | |
parent | Use U+202F instead of U+2009 as thousands_sep for es_MX (diff) | |
download | glibc-a6bd872286b981b08577218c00e1ea693bad6095.tar.gz glibc-a6bd872286b981b08577218c00e1ea693bad6095.tar.bz2 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-strtod5i.c')
-rw-r--r-- | stdlib/tst-strtod5i.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/tst-strtod5i.c b/stdlib/tst-strtod5i.c index 7e319585bb..d7135daaf6 100644 --- a/stdlib/tst-strtod5i.c +++ b/stdlib/tst-strtod5i.c @@ -22,7 +22,7 @@ #include <string.h> #include <math.h> -#define NBSP "\xc2\xa0" +#define NNBSP "\xe2\x80\xaf" static const struct { @@ -57,8 +57,8 @@ static const struct { "-0e-10", 1, -0.0 }, { "0e-1000000", 1, 0.0 }, { "-0e-1000000", 1, -0.0 }, - { "000"NBSP"000"NBSP"000", 1, 0.0 }, - { "-000"NBSP"000"NBSP"000", 1, -0.0 } + { "000"NNBSP"000"NNBSP"000", 1, 0.0 }, + { "-000"NNBSP"000"NNBSP"000", 1, -0.0 } }; #define NTESTS (sizeof (tests) / sizeof (tests[0])) |