Commit:    52bd9f05ead1803e4deacb86affe3bf9ca47b68e
Author:    Michael Wallner <m...@php.net>         Mon, 16 Sep 2013 09:29:42 
+0200
Parents:   743c680545897a1d3900e8b844a4c3cca7dc30e9
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=52bd9f05ead1803e4deacb86affe3bf9ca47b68e

Log:
this test is fragile on travis, let's see why

Changed paths:
  M  ext/standard/tests/file/disk_free_space_basic.phpt


Diff:
diff --git a/ext/standard/tests/file/disk_free_space_basic.phpt 
b/ext/standard/tests/file/disk_free_space_basic.phpt
index 7ea8d36..ec8a853 100644
--- a/ext/standard/tests/file/disk_free_space_basic.phpt
+++ b/ext/standard/tests/file/disk_free_space_basic.phpt
@@ -35,8 +35,10 @@ var_dump( $space2 );
 
 if( $space1 > $space2 )
   echo "\n Free Space Value Is Correct\n";
-else
+else {
   echo "\n Free Space Value Is Incorrect\n";
+  var_dump($space1, $space2);
+}
 
 echo "*** Testing with Binary Input ***\n";
 var_dump( disk_free_space(b"$file_path") );


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

Reply via email to