mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix iconv tests skipped on windows
Closes GH-18802.
This commit is contained in:
parent
50606f8569
commit
5ff5ee0698
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ Translit failure
|
|||
iconv
|
||||
--SKIPIF--
|
||||
<?php
|
||||
( ICONV_IMPL != "libiconv" ) and die("skip ICONV_IMPL != \"libiconv\"");
|
||||
( ICONV_IMPL != "libiconv" && ICONV_IMPL != "\"libiconv\"" ) and die("skip ICONV_IMPL != \"libiconv\"");
|
||||
?>
|
||||
--INI--
|
||||
error_reporting=2039
|
||||
|
|
|
@ -4,7 +4,7 @@ Translit UTF-8 quotes
|
|||
iconv
|
||||
--SKIPIF--
|
||||
<?php
|
||||
( ICONV_IMPL != "libiconv" ) and die("skip ICONV_IMPL != \"libiconv\"");
|
||||
( ICONV_IMPL != "libiconv" && ICONV_IMPL != "\"libiconv\"" ) and die("skip ICONV_IMPL != \"libiconv\"");
|
||||
?>
|
||||
--INI--
|
||||
error_reporting=2047
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue