]> granicus.if.org Git - php/commitdiff
fixed to expect fail
authorZoe Slattery <zoe@php.net>
Fri, 1 May 2009 19:32:15 +0000 (19:32 +0000)
committerZoe Slattery <zoe@php.net>
Fri, 1 May 2009 19:32:15 +0000 (19:32 +0000)
ext/standard/tests/strings/strcoll.phpt

index 6fbfa04a1c98a92c4c1e1a22cb48995e986737e5..be8dfd40575473c60d3653cd52418282b5539386 100644 (file)
@@ -4,13 +4,15 @@ Testing Basic behaviour of strcoll()
 Sebastian Schürmann
 sebs@php.net
 Testfest 2009 Munich
+--XFAIL--
+Needs a fix : http://news.php.net/php.qa/64836
 --FILE--
 <?php
 
  $a = 'a';
  $b = 'A';
 
-setlocale (LC_COLLATE, 'C');
+ locale_set_default('en_US');
 $result = strcoll($a, $b);
 if($result > 0) {
        echo "Pass\n";