]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Adapt test case data to the changes in the thousands separators
authorMike FABIAN <mfabian@redhat.com>
Sat, 12 Aug 2017 15:15:25 +0000 (17:15 +0200)
committerMike FABIAN <mfabian@redhat.com>
Sat, 12 Aug 2017 15:20:24 +0000 (17:20 +0200)
[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.

ChangeLog
localedata/tst-langinfo.sh
stdlib/tst-strfmon_l.c
stdlib/tst-strtod4.c
stdlib/tst-strtod5i.c

index 000dc6d47b95c88558beab7b6460bb76693ef17d..4b6439680c678066e3fb0abbebb79982e9bd5afb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2017-08-12  Mike FABIAN  <mfabian@redhat.com>
+
+       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.
+
 2017-08-11  Florian Weimer  <fweimer@redhat.com>
 
        [BZ #21242]
index 2f8854c422124cd30a8b6626672bf43c87e5dcb1..972a9498fd0322c52b963f7b588e3b284877eebf 100755 (executable)
@@ -289,7 +289,7 @@ fr_FR.ISO-8859-1     D_T_FMT     "%a %d %b %Y %T %Z"
 fr_FR.ISO-8859-1     D_FMT       "%d/%m/%Y"
 fr_FR.ISO-8859-1     T_FMT       "%T"
 fr_FR.ISO-8859-1     RADIXCHAR   ,
-fr_FR.ISO-8859-1     THOUSEP     " "
+fr_FR.ISO-8859-1     THOUSEP     " "
 fr_FR.ISO-8859-1     YESEXPR     ^[+1oOyY]
 fr_FR.ISO-8859-1     NOEXPR      ^[-0nN]
 ja_JP.EUC-JP         ABDAY_1     Æü
index ed7d4869607b63a9752b0fe6e75e89a4f76b4806..dff186f97ada6a09289fe8b37070211c313f813b 100644 (file)
@@ -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"
         }
       }
index 2d9d54c944dccb23a11ae6d1a87977afac13d21a..aae9835d82d38b4ee15fcc9cab9b4630aded4d06 100644 (file)
@@ -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]))
 
index 7e319585bbe3cd052bf0c9e804273915bd35eb37..d7135daaf69d82870cc7820fe0730db9aa695eaf 100644 (file)
@@ -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]))