]> granicus.if.org Git - php/commitdiff
use 65k of data to get a more explicit result
authorMichael Wallner <mike@php.net>
Mon, 16 Sep 2013 08:50:02 +0000 (10:50 +0200)
committerMichael Wallner <mike@php.net>
Mon, 16 Sep 2013 08:50:02 +0000 (10:50 +0200)
ext/standard/tests/file/disk_free_space_basic.phpt

index ec8a8535e2d56cb885c58b08e59135021d9c1866..bfa1db9397f34c180c62bdc29648a0fc881997a3 100644 (file)
@@ -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);