pajoye                                   Tue, 13 Dec 2011 23:04:01 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=320994

Log:
- skip on win

Changed paths:
    U   
php/php-src/branches/PHP_5_3/ext/standard/tests/array/asort_variation5.phpt
    U   
php/php-src/branches/PHP_5_4/ext/standard/tests/array/asort_variation5.phpt
    U   php/php-src/trunk/ext/standard/tests/array/asort_variation5.phpt

Modified: 
php/php-src/branches/PHP_5_3/ext/standard/tests/array/asort_variation5.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/standard/tests/array/asort_variation5.phpt 
2011-12-13 23:01:00 UTC (rev 320993)
+++ php/php-src/branches/PHP_5_3/ext/standard/tests/array/asort_variation5.phpt 
2011-12-13 23:04:01 UTC (rev 320994)
@@ -1,5 +1,10 @@
 --TEST--
-Test asort() function : usage variations - sort strings
+Test asort() function : usage variations - sort strings
+--SKIPIF--
+<?php
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+  die("skip Output tested contains chars that are not shown the same on 
windows concole (ESC and co)");
+}
 --FILE--
 <?php
 /* Prototype  : bool asort ( array &$array [, int $asort_flags] )

Modified: 
php/php-src/branches/PHP_5_4/ext/standard/tests/array/asort_variation5.phpt
===================================================================
--- php/php-src/branches/PHP_5_4/ext/standard/tests/array/asort_variation5.phpt 
2011-12-13 23:01:00 UTC (rev 320993)
+++ php/php-src/branches/PHP_5_4/ext/standard/tests/array/asort_variation5.phpt 
2011-12-13 23:04:01 UTC (rev 320994)
@@ -1,5 +1,10 @@
 --TEST--
-Test asort() function : usage variations - sort strings
+Test asort() function : usage variations - sort strings
+--SKIPIF--
+<?php
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+  die("skip Output tested contains chars that are not shown the same on 
windows concole (ESC and co)");
+}
 --FILE--
 <?php
 /* Prototype  : bool asort ( array &$array [, int $asort_flags] )

Modified: php/php-src/trunk/ext/standard/tests/array/asort_variation5.phpt
===================================================================
--- php/php-src/trunk/ext/standard/tests/array/asort_variation5.phpt    
2011-12-13 23:01:00 UTC (rev 320993)
+++ php/php-src/trunk/ext/standard/tests/array/asort_variation5.phpt    
2011-12-13 23:04:01 UTC (rev 320994)
@@ -1,5 +1,10 @@
 --TEST--
-Test asort() function : usage variations - sort strings
+Test asort() function : usage variations - sort strings
+--SKIPIF--
+<?php
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+  die("skip Output tested contains chars that are not shown the same on 
windows concole (ESC and co)");
+}
 --FILE--
 <?php
 /* Prototype  : bool asort ( array &$array [, int $asort_flags] )

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

Reply via email to