mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
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:
parent
c9787b4785
commit
c2ca9cd73f
@ -1,6 +1,7 @@
|
||||
--TEST--
|
||||
Check for exif_read_data, Unicode WinXP tags
|
||||
--EXTENSIONS--
|
||||
mbstring
|
||||
exif
|
||||
--SKIPIF--
|
||||
<?php
|
||||
|
@ -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--
|
||||
|
@ -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--
|
||||
|
@ -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--
|
||||
|
@ -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--
|
||||
|
@ -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--
|
||||
|
@ -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--
|
||||
|
Loading…
Reference in New Issue
Block a user