mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02: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
7 changed files with 19 additions and 6 deletions
|
@ -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
|
||||||
|
|
|
@ -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--
|
||||||
|
|
|
@ -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--
|
||||||
|
|
|
@ -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--
|
||||||
|
|
|
@ -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--
|
||||||
|
|
|
@ -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--
|
||||||
|
|
|
@ -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--
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue