aboutsummaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/tst-strfmon_l.c8
-rw-r--r--stdlib/tst-strtod4.c6
-rw-r--r--stdlib/tst-strtod5i.c6
3 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/tst-strfmon_l.c b/stdlib/tst-strfmon_l.c
index ed7d486..dff186f 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"
}
}
diff --git a/stdlib/tst-strtod4.c b/stdlib/tst-strtod4.c
index 2d9d54c..aae9835 100644
--- a/stdlib/tst-strtod4.c
+++ b/stdlib/tst-strtod4.c
@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <string.h>
-#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]))
diff --git a/stdlib/tst-strtod5i.c b/stdlib/tst-strtod5i.c
index 7e31958..d7135da 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]))