Skip to content

Commit aa87793

Browse files
committed
Refine skipif for cirrus+arm
Closes GH-11612
1 parent 18067c8 commit aa87793

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ext/standard/tests/file/bug52820.phpt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ curl_setopt($handle, CURLOPT_VERBOSE, true);
1212
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
1313
if (!@curl_setopt($handle, CURLOPT_STDERR, fopen("php://memory", "w+")))
1414
die("skip fopencookie not supported on this platform");
15-
if (getenv('CIRRUS_CI')) die('xfail Broken on Cirrus+ARM');
15+
if (getenv('CIRRUS_CI') && strpos(php_uname('m'), 'aarch64') !== false) {
16+
die('xfail Broken on Cirrus+ARM');
17+
}
1618
?>
1719
--FILE--
1820
<?php

0 commit comments

Comments
 (0)