1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

Fix iconv tests skipped on windows

Closes GH-18802.
This commit is contained in:
Demon
2025-06-08 18:25:25 +08:00
committed by Niels Dossche
parent 50606f8569
commit 5ff5ee0698
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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