summaryrefslogtreecommitdiff
path: root/ext/iconv/tests/translit-failure.phpt
blob: d0fbf5c86add6052e5033fbdd239bb98aae4334b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--TEST--
Translit failure
--SKIPIF--
<?php
/* include('skipif.inc'); */
( ICONV_IMPL != "libiconv" ) and die("skip ICONV_IMPL != \"libiconv\""); 
?>
--INI--
error_reporting=2039
--FILE--
<?php
/* include('test.inc'); */
// Should be ok.
// Content from file is from libiconv testkit. Tested both
// with a string as an implode, no difference.
// if at some point internal encoding changes, set correct one
// in INI section or use file 'TranslitFail1.ISO-8859-1'.

set_time_limit(5);
/*
 * The bug (fixed in libiconv 1.8) was confirmed that iconv goes into an
 * infinite loop when ASCII//TRANSLIT is performed. We should stop it in
 * some time.
 */

$test = 'Écrit par %s.';

if (!@iconv("ISO-8859-1", "ASCII//TRANSLIT", $test)) {
	echo 'wrong is right';
}
?>
--EXPECT--
wrong is right