We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d6651c commit 58e72dbCopy full SHA for 58e72db
ext/standard/tests/file/bug81145.phpt
@@ -2,7 +2,12 @@
2
Bug #81145 (copy() and stream_copy_to_stream() fail for +4GB files)
3
--SKIPIF--
4
<?php
5
+if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
6
if (disk_free_space(__DIR__) < 0x220000000) die("skip insuffient disk space");
7
+if (PHP_OS_FAMILY !== "Windows") {
8
+ exec("fallocate -h", $output, $status);
9
+ if ($status !== 0) die("skip fallocate(1) not available");
10
+}
11
?>
12
--FILE--
13
0 commit comments