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

Refine skipif for cirrus+arm

Closes GH-11612
This commit is contained in:
Ilija Tovilo
2023-07-07 09:30:01 +02:00
parent 18067c8cb8
commit aa87793e59

View File

@@ -12,7 +12,9 @@ curl_setopt($handle, CURLOPT_VERBOSE, true);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
if (!@curl_setopt($handle, CURLOPT_STDERR, fopen("php://memory", "w+")))
die("skip fopencookie not supported on this platform");
if (getenv('CIRRUS_CI')) die('xfail Broken on Cirrus+ARM');
if (getenv('CIRRUS_CI') && strpos(php_uname('m'), 'aarch64') !== false) {
die('xfail Broken on Cirrus+ARM');
}
?>
--FILE--
<?php