summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-05-21 14:01:31 +0000
committerFelipe Pena <felipe@php.net>2008-05-21 14:01:31 +0000
commit3665899dbaeb02616fe37fe0ecb592990cb84519 (patch)
tree3fd9cae0c6d1f8e951f7f411a2faa22580329395
parent19e44a3234d8493765f5ebd55aaadb0a76ba9961 (diff)
downloadphp-git-3665899dbaeb02616fe37fe0ecb592990cb84519.tar.gz
- Remove check for unicode.semantics
-rwxr-xr-xrun-tests.php4
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()); ?>');