Skip to content

Commit 45ffa77

Browse files
committed
Merge branch 'PHP-8.2'
* PHP-8.2: xfail socket zerocopy test on Cirrus + arm
2 parents ff8c290 + 838f6bf commit 45ffa77

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ext/sockets/tests/socket_sendto_zerocopy.phpt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ if (!defined("SO_ZEROCOPY")) {
1111
if (strpos($arch, 'ppc') !== false || strpos($arch, 'powerpc') !== false) {
1212
die('skip not for powerpc arch');
1313
}
14+
if (getenv('CIRRUS_CI') && strpos($arch, 'aarch64') !== false) {
15+
die('xfail Broken on Cirrus + arm');
16+
}
17+
?>
1418
--FILE--
1519
<?php
1620
$socket = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);

0 commit comments

Comments
 (0)