Skip to content

Commit b8f026a

Browse files
committed
Refine skipif for cirrus+arm
1 parent d397fec commit b8f026a

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($arch, 'aarch64') !== false) {
16+
die('xfail Broken on Cirrus+ARM');
17+
}
1618
?>
1719
--FILE--
1820
<?php

0 commit comments

Comments
 (0)