From: Michael Wallner Date: Mon, 16 Sep 2013 08:50:02 +0000 (+0200) Subject: use 65k of data to get a more explicit result X-Git-Tag: PRE_PHPNG_MERGE~222^2~4^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca3d5d06e4eea225f7da2202153d59545db0538e;p=php use 65k of data to get a more explicit result --- diff --git a/ext/standard/tests/file/disk_free_space_basic.phpt b/ext/standard/tests/file/disk_free_space_basic.phpt index ec8a8535e2..bfa1db9397 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);