hnangelo                Thu Jun 12 21:59:25 2008 UTC

  Modified files:              
    /php-src    run-tests.php 
  Log:
  Fix the script to correctly determine the extensions to be tested
  
http://cvs.php.net/viewvc.cgi/php-src/run-tests.php?r1=1.356&r2=1.357&diff_format=u
Index: php-src/run-tests.php
diff -u php-src/run-tests.php:1.356 php-src/run-tests.php:1.357
--- php-src/run-tests.php:1.356 Thu Jun 12 12:02:01 2008
+++ php-src/run-tests.php       Thu Jun 12 21:59:25 2008
@@ -24,7 +24,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: run-tests.php,v 1.356 2008/06/12 12:02:01 sfox Exp $ */
+/* $Id: run-tests.php,v 1.357 2008/06/12 21:59:25 hnangelo Exp $ */
 
 /* Sanity check to ensure that pcre extension needed by this script is 
available.
  * In the event it is not, print a nice error message indicating that this 
script will
@@ -218,7 +218,7 @@
 
        // 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'),
@@ -445,7 +445,7 @@
                                        $html_output = is_resource($html_file);
                                        break;
                                case '--version':
-                                       echo '$Revision: 1.356 $' . "\n";
+                                       echo '$Revision: 1.357 $' . "\n";
                                        exit(1);
                                default:
                                        echo "Illegal switch '$switch' 
specified!\n";



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to