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

Merge branch 'PHP-8.3'

* PHP-8.3:
  xfail mbstring test on Windows 32-bit
This commit is contained in:
Ilija Tovilo
2023-09-03 14:23:09 +02:00

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