From: Preston L. Bannister Date: Thu, 16 May 2002 21:55:26 +0000 (+0000) Subject: Restrict ctype tests to POSIX portable characters (0..127) and add numeric character... X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3ae02255b10c4c0ee124d082a04444cc12a019c;p=php Restrict ctype tests to POSIX portable characters (0..127) and add numeric character tests. --- diff --git a/ext/ctype/tests/002.phpt b/ext/ctype/tests/002.phpt index 8ccc1c7f75..f002b3b933 100644 --- a/ext/ctype/tests/002.phpt +++ b/ext/ctype/tests/002.phpt @@ -6,17 +6,22 @@ ctype on strings --GET-- --FILE-- --EXPECT-- -ctype_lower 26 0 -ctype_upper 26 0 -ctype_alpha 52 0 -ctype_digit 10 0 -ctype_alnum 62 0 -ctype_cntrl 33 0 -ctype_graph 94 94 -ctype_print 95 95 -ctype_punct 32 0 -ctype_space 6 0 -ctype_xdigit 22 0 +LOCALE is 'C' +ctype_lower 26 26 0 +ctype_upper 26 26 0 +ctype_alpha 52 52 0 +ctype_digit 10 10 0 +ctype_alnum 62 62 0 +ctype_cntrl 33 33 0 +ctype_graph 94 94 94 +ctype_print 95 95 95 +ctype_punct 32 32 0 +ctype_space 6 6 0 +ctype_xdigit 22 22 0