moriyoshi               Fri Oct  3 12:59:45 2003 EDT

  Added files:                 
    /php-src/ext/ctype/tests    bug25745.phpt 
  Log:
  Add regression test for bug #25745
  
  

Index: php-src/ext/ctype/tests/bug25745.phpt
+++ php-src/ext/ctype/tests/bug25745.phpt
--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

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to