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 0479d14 commit 19a9bf4Copy full SHA for 19a9bf4
1 file changed
tests/tests/Util/FilesystemTest.php
@@ -127,6 +127,10 @@ public function testWriteDoesNotCreateDirectoryForStreamTarget(): void
127
128
public function testWriteThrowsExceptionWhenFileCannotBeWritten(): void
129
{
130
+ if (PHP_OS_FAMILY === 'Darwin') {
131
+ $this->markTestSkipped('Cannot reliably trigger a write failure on macOS because /proc does not exist');
132
+ }
133
+
134
if (PHP_OS_FAMILY === 'Windows') {
135
// Character < is invalid in Windows file names, and dirname() returns the existing temp dir
136
$target = sys_get_temp_dir() . '\\file<invalid';
0 commit comments