1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

xfail socket zerocopy test on Cirrus + arm

Closes GH-11553
This commit is contained in:
Ilija Tovilo
2023-06-28 19:26:26 +02:00
parent 6b9d295674
commit 838f6bffff

View File

@@ -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--
<?php
$socket = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);