Commit:    ca3d5d06e4eea225f7da2202153d59545db0538e
Author:    Michael Wallner <m...@php.net>         Mon, 16 Sep 2013 10:50:02 
+0200
Parents:   6dff371a353545607fe03bfee8a90790a991c4cf
Branches:  master

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

Log:
use 65k of data to get a more explicit result

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 ec8a853..bfa1db9 100644
--- a/ext/standard/tests/file/disk_free_space_basic.phpt
+++ b/ext/standard/tests/file/disk_free_space_basic.phpt
@@ -25,7 +25,7 @@ $space1 =  disk_free_space($file_path.$dir);
 var_dump( $space1 ); 
 
 $fh = fopen($file_path.$dir."/disk_free_space.tmp", "a");
-$data = str_repeat("x", 4096);
+$data = str_repeat("x", 0xffff);
 fwrite($fh, (binary)$data);
 fclose($fh);


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

Reply via email to