diff options
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/testsuite/newlib.wctype/twctype.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index c8628cb..2cbc45e 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2013-10-09 Marcus Shawcroft <marcus.shawcroft@arm.com> + + * testsuite/newlib.wctype/twctype.c (main): Update + iswprint(0xce2) test case. + 2013-10-03 Steve Ellcey <sellcey@mips.com> * libc/machine/mips/memset.c: Remove. diff --git a/newlib/testsuite/newlib.wctype/twctype.c b/newlib/testsuite/newlib.wctype/twctype.c index d206876..95be74d 100644 --- a/newlib/testsuite/newlib.wctype/twctype.c +++ b/newlib/testsuite/newlib.wctype/twctype.c @@ -48,7 +48,7 @@ int main() CHECK (iswlower(0x03b3)); CHECK (!iswlower(0x04aa)); CHECK (iswprint(0x0b13)); - CHECK (!iswprint(0x0ce2)); + CHECK (!iswprint(0x0ce4)); CHECK (iswpunct(0x002d)); CHECK (!iswpunct(0x0a84)); CHECK (iswspace(0x000a)); |