mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
Skip this when strtoupper doesn't behave as expected, because casefolding
depends on this.
This commit is contained in:
parent
7bb87c31f8
commit
b4b26c2f9b
@ -1,7 +1,13 @@
|
||||
--TEST--
|
||||
xml_parse_into_struct/umlauts in tags
|
||||
--SKIPIF--
|
||||
<?php include("skipif.inc"); ?>
|
||||
<?php // vim600: syn=php
|
||||
include("skipif.inc");
|
||||
if(strtoupper("äöü") == "äöü")
|
||||
{
|
||||
die("skip strtoupper on non-ascii not supported on this platform");
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
function startHandler($parser,$tag,$attr) { var_dump($tag,$attr); }
|
||||
|
Loading…
Reference in New Issue
Block a user