Skip to content

Commit 53893c4

Browse files
committed
fixup! Unbreak SKIPIF
1 parent 70dab5d commit 53893c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/tests/file/bug81145.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if (disk_free_space(__DIR__) < 0x220000000) die("skip insuffient disk space");
88
if (PHP_OS_FAMILY !== "Windows") {
99
$src = __DIR__ . "/bug81145_src.bin";
1010
define('SIZE_4G', 0x100000000);
11-
exec("fallocate -l " . (SIZE_4G-0x100) . " " . escapeshellarg($src), $output, $status);
11+
exec("fallocate -l " . (SIZE_4G-0x100) . " " . escapeshellarg($src) . " 2> /dev/null", $output, $status);
1212
if ($status !== 0) die("skip fallocate() not supported");
1313
@unlink(__DIR__ . "/bug81145_src.bin");
1414
}

0 commit comments

Comments
 (0)