From a82e1850152c4ecb5e23a582bdfef4cdc9b8b24c Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Wed, 28 Jun 2023 19:26:26 +0200 Subject: [PATCH] xfail socket zerocopy test on Cirrus + arm --- ext/sockets/tests/socket_sendto_zerocopy.phpt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/sockets/tests/socket_sendto_zerocopy.phpt b/ext/sockets/tests/socket_sendto_zerocopy.phpt index 107444b6313a4..8542038da9986 100644 --- a/ext/sockets/tests/socket_sendto_zerocopy.phpt +++ b/ext/sockets/tests/socket_sendto_zerocopy.phpt @@ -11,6 +11,10 @@ if (!defined("SO_ZEROCOPY")) { if (strpos($arch, 'ppc') !== false || strpos($arch, 'powerpc') !== false) { die('skip not for powerpc arch'); } +if (getenv('CIRRUS_CI') && strpos($arch, 'aarch64') !== false) { + die('xfail Broken on Cirrus + arm'); +} +?> --FILE--