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

xfail mbstring test on Windows 32-bit

This commit is contained in:
Ilija Tovilo
2023-09-03 14:21:31 +02:00
parent 9ce9c11ee8
commit 6b74f1f745

View File

@@ -5,6 +5,9 @@ mbstring
--SKIPIF--
<?php
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
if (substr(PHP_OS, 0, 3) === 'WIN' && PHP_INT_SIZE === 4) {
die('xfail Fails on 32-bit Windows');
}
?>
--FILE--
<?php