summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2021-03-19 12:19:24 +0300
committerChristoph M. Becker <cmbecker69@gmx.de>2021-03-24 13:57:31 +0100
commit6800f0a3c2328d399afca02616bad6b1b73c5bdc (patch)
tree58d45df6eb8bd6f0bfc5f8c293f9851ba18ab06b
parent5832be768c1e9e28bfdedbf8fba91a3fa2baedc1 (diff)
downloadphp-git-6800f0a3c2328d399afca02616bad6b1b73c5bdc.tar.gz
XFAIL on WIN64 because of problem in libffi
(cherry picked from commit 6689bedd1796380f882fdecc6dcf8da1ff885c2b)
-rw-r--r--ext/ffi/tests/bug80847.phpt1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/ffi/tests/bug80847.phpt b/ext/ffi/tests/bug80847.phpt
index bfa750159c..b5904c649a 100644
--- a/ext/ffi/tests/bug80847.phpt
+++ b/ext/ffi/tests/bug80847.phpt
@@ -4,6 +4,7 @@ Bug #80847 (Nested structs)
<?php
if (!extension_loaded('ffi')) die('skip ffi extension not available');
if (!extension_loaded('zend-test')) die('skip zend-test extension not available');
+if (PHP_OS_FAMILY == 'Windows' && ((1 << 31) > 0)) die('xfail libffi doesn\'t properly support passing big strctures by value on Windows/64');
?>
--FILE--
<?php