Index: run-tests.php =================================================================== RCS file: /repository/php-src/run-tests.php,v retrieving revision 1.226.2.37 diff -u -F function -r1.226.2.37 run-tests.php --- run-tests.php 3 May 2006 21:37:16 -0000 1.226.2.37 +++ run-tests.php 23 Aug 2006 12:19:18 -0000 @@ -192,13 +192,13 @@ More .INIs : " . (function_exists(\'php $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, ''); - $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'),