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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user