From b816819228262ce4912901f867611756c8d3b6cc Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 11 Feb 2019 07:42:46 -0600 Subject: [PATCH] skip on mac --- tests/Filesystem/FilesystemTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Filesystem/FilesystemTest.php b/tests/Filesystem/FilesystemTest.php index a0f7edfafc29..fa12197e98d9 100755 --- a/tests/Filesystem/FilesystemTest.php +++ b/tests/Filesystem/FilesystemTest.php @@ -433,6 +433,10 @@ public function testMakeDirectory() */ public function testSharedGet() { + if (PHP_OS == 'Darwin') { + $this->markTestSkipped('Skipping on MacOS'); + } + if (! function_exists('pcntl_fork')) { $this->markTestSkipped('Skipping since the pcntl extension is not available'); }