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--
Check for exif_read_data, Unicode WinXP tags
--EXTENSIONS--
mbstring
exif
--SKIPIF--
<?php

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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