summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-08-23 12:43:53 +0000
committerAntony Dovgal <tony2001@php.net>2006-08-23 12:43:53 +0000
commit1e392f88156f3b5dc4fc65afd0a675b8fef91ac3 (patch)
tree5a63a96bf0a83c306f6af2cc1c720a054173d4f6
parenta0fb889d93fbba8f81361f81b93ab7c0bfd11ffa (diff)
downloadphp-git-1e392f88156f3b5dc4fc65afd0a675b8fef91ac3.tar.gz
fix run-tests on windows
-rwxr-xr-xrun-tests.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/run-tests.php b/run-tests.php
index f5b39e643c..12e2458ce4 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -192,13 +192,13 @@ More .INIs : " . (function_exists(\'php_ini_scanned_files\') ? str_replace("\n"
$info_params = array();
settings2array($ini_overwrites,$info_params);
settings2params($info_params);
- $php_info = `$php $pass_options $info_params $info_file`;
+ $php_info = `$php $pass_options $info_params "$info_file"`;
@unlink($info_file);
- define('TESTED_PHP_VERSION', `$php -r 'echo PHP_VERSION;'`);
+ define('TESTED_PHP_VERSION', `$php -r "echo PHP_VERSION;"`);
// load list of enabled extensions
save_text($info_file, '<?php echo join(",",get_loaded_extensions()); ?>');
- $exts_to_test = explode(',',`$php $pass_options $info_params $info_file`);
+ $exts_to_test = explode(',',`$php $pass_options $info_params "$info_file"`);
// check for extensions that need special handling and regenerate
$info_params_ex = array(
'session' => array('session.auto_start=0'),