1From b1fa212d0bc29dcc72107ad67fb99d4ef573942a Mon Sep 17 00:00:00 2001
2From: Shyim <github@shyim.de>
3Date: Thu, 28 Dec 2023 10:28:21 +0100
4Subject: [PATCH] php: skip epoll1 test on darwin
5
6---
7 tests/grpc-set-ini.phpt | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/tests/grpc-set-ini.phpt b/tests/grpc-set-ini.phpt
11index 55c18ee526e24..b39348ea2e685 100644
12--- a/tests/grpc-set-ini.phpt
13+++ b/tests/grpc-set-ini.phpt
14@@ -1,7 +1,7 @@
15 --TEST--
16 Ensure ini settings are handled
17 --SKIPIF--
18-<?php if (!extension_loaded("grpc")) print "skip"; ?>
19+<?php if (!extension_loaded("grpc") || PHP_OS === "Darwin") print "skip"; ?>
20 --INI--
21 grpc.enable_fork_support = 1
22 grpc.poll_strategy = epoll1