diff options
author | Felipe Pena <felipe@php.net> | 2008-05-21 14:01:31 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-05-21 14:01:31 +0000 |
commit | 3665899dbaeb02616fe37fe0ecb592990cb84519 (patch) | |
tree | 3fd9cae0c6d1f8e951f7f411a2faa22580329395 | |
parent | 19e44a3234d8493765f5ebd55aaadb0a76ba9961 (diff) | |
download | php-git-3665899dbaeb02616fe37fe0ecb592990cb84519.tar.gz |
- Remove check for unicode.semantics
-rwxr-xr-x | run-tests.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-tests.php b/run-tests.php index 741ff87792..74bb74ad12 100755 --- a/run-tests.php +++ b/run-tests.php @@ -211,8 +211,8 @@ More .INIs : " , (function_exists(\'php_ini_scanned_files\') ? str_replace("\n" } @unlink($info_file); - $unicode = `$php $pass_options $info_params -r "echo ini_get('unicode.semantics');"`; - define('TESTED_UNICODE', strcasecmp($unicode,"on") == 0 || $unicode == 1); + $unicode = 1; + define('TESTED_UNICODE', 1); // load list of enabled extensions save_text($info_file, '<?php echo join(",",get_loaded_extensions()); ?>'); |