Don't unnecessarily skip mb related tests

Apparently, these tests have been overlooked when we switched to using
the `--EXTENSIONS--` section.  That caused to skip these tests on
AppVeyor.

Closes GH-8504.
This commit is contained in:
Christoph M. Becker 2022-05-06 15:03:24 +02:00
parent c9787b4785
commit c2ca9cd73f
No known key found for this signature in database
GPG key ID: D66C9593118BCCB6
7 changed files with 19 additions and 6 deletions

View file

@ -1,6 +1,7 @@
--TEST-- --TEST--
Check for exif_read_data, Unicode WinXP tags Check for exif_read_data, Unicode WinXP tags
--EXTENSIONS-- --EXTENSIONS--
mbstring
exif exif
--SKIPIF-- --SKIPIF--
<?php <?php

View file

@ -1,12 +1,14 @@
--TEST-- --TEST--
Bug #54028 Directory::read() cannot handle non-unicode chars properly Bug #54028 Directory::read() cannot handle non-unicode chars properly
--EXTENSIONS--
mbstring
--SKIPIF-- --SKIPIF--
<?php <?php
include __DIR__ . DIRECTORY_SEPARATOR . "util.inc"; include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
skip_if_not_win(); skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
skip_if_no_required_exts("mbstring"); skip_if_no_required_exts();
?> ?>
--FILE-- --FILE--

View file

@ -1,5 +1,7 @@
--TEST-- --TEST--
Test fopen() for reading CP1251 with zend.multibyte Test fopen() for reading CP1251 with zend.multibyte
--EXTENSIONS--
mbstring
--INI-- --INI--
zend.multibyte=1 zend.multibyte=1
zend.script_encoding=cp1251 zend.script_encoding=cp1251
@ -9,7 +11,7 @@ include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
skip_if_not_win(); skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
skip_if_no_required_exts("mbstring"); skip_if_no_required_exts();
?> ?>
--CONFLICTS-- --CONFLICTS--

View file

@ -1,5 +1,7 @@
--TEST-- --TEST--
Test mkdir/rmdir CP1251 with zend.multibyte Test mkdir/rmdir CP1251 with zend.multibyte
--EXTENSIONS--
mbstring
--INI-- --INI--
zend.multibyte=1 zend.multibyte=1
zend.script_encoding=cp1251 zend.script_encoding=cp1251
@ -9,7 +11,7 @@ include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
skip_if_not_win(); skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
skip_if_no_required_exts("mbstring"); skip_if_no_required_exts();
?> ?>
--CONFLICTS-- --CONFLICTS--

View file

@ -1,5 +1,7 @@
--TEST-- --TEST--
Test fopen() for write CP1251 with zend.multibyte Test fopen() for write CP1251 with zend.multibyte
--EXTENSIONS--
mbstring
--INI-- --INI--
zend.multibyte=1 zend.multibyte=1
zend.script_encoding=cp1251 zend.script_encoding=cp1251
@ -9,7 +11,7 @@ include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
skip_if_not_win(); skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
skip_if_no_required_exts("mbstring"); skip_if_no_required_exts();
?> ?>
--CONFLICTS-- --CONFLICTS--

View file

@ -1,12 +1,14 @@
--TEST-- --TEST--
Basic long path test Basic long path test
--EXTENSIONS--
mbstring
--SKIPIF-- --SKIPIF--
<?php <?php
include __DIR__ . DIRECTORY_SEPARATOR . "util.inc"; include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
skip_if_not_win(); skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
skip_if_no_required_exts("mbstring"); skip_if_no_required_exts();
?> ?>
--FILE-- --FILE--

View file

@ -1,12 +1,14 @@
--TEST-- --TEST--
Basic long path test with file I/O, multibyte path and realpath() check Basic long path test with file I/O, multibyte path and realpath() check
--EXTENSIONS--
mbstring
--SKIPIF-- --SKIPIF--
<?php <?php
include __DIR__ . DIRECTORY_SEPARATOR . "util.inc"; include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
skip_if_not_win(); skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
skip_if_no_required_exts("mbstring"); skip_if_no_required_exts();
?> ?>
--FILE-- --FILE--