From: Marcus Boerger Date: Fri, 9 Dec 2005 17:59:50 +0000 (+0000) Subject: - Readd -u and -U X-Git-Tag: RELEASE_1_0_4~447 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39cf99ed36246229fe5e9e02fe6809a017402424;p=php - Readd -u and -U # Removed those accidentially, the diff was obviously too big --- diff --git a/run-tests.php b/run-tests.php index 3b552492b1..47b70d723d 100755 --- a/run-tests.php +++ b/run-tests.php @@ -322,6 +322,17 @@ if (isset($argc) && $argc > 1) { case '--temp-urlbase': $temp_urlbase = $argv[++$i]; break; + case 'U': + $unicode_and_native = true; + // break; + case 'u': + $unicode_testing = true; + $ini_overwrites[] = 'unicode_semantics=1'; + $ini_overwrites[] = 'unicode.runtime_encoding=iso-8859-1'; + $ini_overwrites[] = 'unicode.script_encoding=utf-8'; + $ini_overwrites[] = 'unicode.output_encoding=utf-8'; + $ini_overwrites[] = 'unicode.from_error_mode=U_INVALID_SUBSTITUTE'; + break; case 'v': case '--verbose': $DETAILED = true;