From a6bd872286b981b08577218c00e1ea693bad6095 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sat, 12 Aug 2017 17:15:25 +0200 Subject: 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. --- stdlib/tst-strtod4.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stdlib/tst-strtod4.c') diff --git a/stdlib/tst-strtod4.c b/stdlib/tst-strtod4.c index 2d9d54c944..aae9835d82 100644 --- a/stdlib/tst-strtod4.c +++ b/stdlib/tst-strtod4.c @@ -3,7 +3,7 @@ #include #include -#define NBSP "\xc2\xa0" +#define NNBSP "\xe2\x80\xaf" static const struct { @@ -12,8 +12,8 @@ static const struct double expected; } tests[] = { - { "000"NBSP"000"NBSP"000", "", 0.0 }, - { "1"NBSP"000"NBSP"000,5x", "x", 1000000.5 } + { "000"NNBSP"000"NNBSP"000", "", 0.0 }, + { "1"NNBSP"000"NNBSP"000,5x", "x", 1000000.5 } }; #define NTESTS (sizeof (tests) / sizeof (tests[0])) -- cgit 1.4.1