diff options
-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()); ?>'); |