Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/testsuite/newlib.wctype/twctrans.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 3d0de569c..7493fc89c 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-08 Renlin Li <renlin.li@arm.com>
+
+ * testsuite/newlib.wctype/twctrans.c (main): Use towlower and towupper.
+
2015-01-06 Richard Earnshaw <rearnsha@arm.com>
* libc/machine/aarch64/strcpy.S (strcpy): Further performance
diff --git a/newlib/testsuite/newlib.wctype/twctrans.c b/newlib/testsuite/newlib.wctype/twctrans.c
index a70e00175..f8b7b50e5 100644
--- a/newlib/testsuite/newlib.wctype/twctrans.c
+++ b/newlib/testsuite/newlib.wctype/twctrans.c
@@ -8,13 +8,13 @@ int main()
x = wctrans ("tolower");
CHECK (x != 0);
- CHECK (towctrans (L'A', x) == tolower ('A'));
- CHECK (towctrans (L'5', x) == tolower ('5'));
+ CHECK (towctrans (L'A', x) == towlower (L'A'));
+ CHECK (towctrans (L'5', x) == towlower (L'5'));
x = wctrans ("toupper");
CHECK (x != 0);
- CHECK (towctrans (L'c', x) == toupper ('c'));
- CHECK (towctrans (L'9', x) == toupper ('9'));
+ CHECK (towctrans (L'c', x) == towupper (L'c'));
+ CHECK (towctrans (L'9', x) == towupper (L'9'));
x = wctrans ("unknown");
CHECK (x == 0);