diff options
| author | Marcus Boerger <helly@php.net> | 2005-12-09 17:59:50 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2005-12-09 17:59:50 +0000 |
| commit | 39cf99ed36246229fe5e9e02fe6809a017402424 (patch) | |
| tree | 991b90e2afceb4cce711bdef3a0c6137136d2ccf /run-tests.php | |
| parent | 34bc5d7d41a058942bbb334259b555f21afa0e6d (diff) | |
| download | php-git-39cf99ed36246229fe5e9e02fe6809a017402424.tar.gz | |
- Readd -u and -U
# Removed those accidentially, the diff was obviously too big
Diffstat (limited to 'run-tests.php')
| -rwxr-xr-x | run-tests.php | 11 |
1 files changed, 11 insertions, 0 deletions
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; |
