diff options
author | Hannes Magnusson <bjori@php.net> | 2006-10-07 23:50:54 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2006-10-07 23:50:54 +0000 |
commit | 1b6606eb1a8cb83e0dc2bf104d65d06011c127a0 (patch) | |
tree | 8b57bf2ba924dde3ef41ec685b28b034b3d360a3 | |
parent | dc9a30be4c05f6dde7b3ff6be04a545fd58082b9 (diff) | |
download | php-git-1b6606eb1a8cb83e0dc2bf104d65d06011c127a0.tar.gz |
fix tests
-rw-r--r-- | ext/ctype/tests/001.phpt | 13 | ||||
-rw-r--r-- | ext/ctype/tests/002.phpt | 16 |
2 files changed, 29 insertions, 0 deletions
diff --git a/ext/ctype/tests/001.phpt b/ext/ctype/tests/001.phpt index b7beea7861..adcf75749e 100644 --- a/ext/ctype/tests/001.phpt +++ b/ext/ctype/tests/001.phpt @@ -37,3 +37,16 @@ ctype_print 95 ctype_punct 32 ctype_space 6 ctype_xdigit 22 +--UEXPECTF-- +Strict Standards: setlocale(): deprecated in Unicode mode, please use ICU locale functions in %s001.php on line %d +ctype_lower 26 +ctype_upper 26 +ctype_alpha 52 +ctype_digit 10 +ctype_alnum 62 +ctype_cntrl 33 +ctype_graph 94 +ctype_print 95 +ctype_punct 32 +ctype_space 6 +ctype_xdigit 22 diff --git a/ext/ctype/tests/002.phpt b/ext/ctype/tests/002.phpt index 598ff9be96..c1339d3338 100644 --- a/ext/ctype/tests/002.phpt +++ b/ext/ctype/tests/002.phpt @@ -46,3 +46,19 @@ ctype_print 95 95 95 ctype_punct 32 32 0 ctype_space 6 6 0 ctype_xdigit 22 22 0 +--UEXPECTF-- +Strict Standards: setlocale(): deprecated in Unicode mode, please use ICU locale functions in %s002.php on line %d + +Strict Standards: setlocale(): deprecated in Unicode mode, please use ICU locale functions in %s002.php on line %d +LOCALE is '%s' +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 |