summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/bug25745.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ctype/tests/bug25745.phpt')
-rw-r--r--ext/ctype/tests/bug25745.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/ctype/tests/bug25745.phpt b/ext/ctype/tests/bug25745.phpt
deleted file mode 100644
index 1d0ae0da7e..0000000000
--- a/ext/ctype/tests/bug25745.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-Bug #25745 (ctype functions fail with non-ascii characters)
---FILE--
-<?php
-$funcs = array(
- "ctype_alnum", "ctype_alpha", "ctype_cntrl", "ctype_digit",
- "ctype_graph", "ctype_lower", "ctype_print", "ctype_punct",
- "ctype_space", "ctype_upper", "ctype_xdigit"
-);
-
-foreach ($funcs as $ctype_func) {
- for ($i = 0; $i < 256; $i++) {
- $a = $ctype_func($i);
- $b = $ctype_func(chr($i));
- if ($a != $b) {
- echo "broken... $ctype_func($i) = $a, $ctype_func(chr($i)) = $b\n";
- exit;
- }
- }
-}
-echo "ok\n";
-?>
---EXPECT--
-ok