tony2001                Mon Aug  7 21:27:32 2006 UTC

  Modified files:              
    /php-src    run-tests.php 
  Log:
  suppress errors from date() if no date.timezone set
  don't try to look for libtool if $sys_libtool_path is empty
  
  
http://cvs.php.net/viewvc.cgi/php-src/run-tests.php?r1=1.300&r2=1.301&diff_format=u
Index: php-src/run-tests.php
diff -u php-src/run-tests.php:1.300 php-src/run-tests.php:1.301
--- php-src/run-tests.php:1.300 Fri Jul 28 12:58:42 2006
+++ php-src/run-tests.php       Mon Aug  7 21:27:32 2006
@@ -23,7 +23,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: run-tests.php,v 1.300 2006/07/28 12:58:42 tony2001 Exp $ */
+/* $Id: run-tests.php,v 1.301 2006/08/07 21:27:32 tony2001 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
@@ -227,7 +227,7 @@
 $pass_options = '';
 
 $compression = 0;
-$output_file = $CUR_DIR . '/php_test_results_' . date('Ymd_Hi') . '.txt';
+$output_file = $CUR_DIR . '/php_test_results_' . @date('Ymd_Hi') . '.txt';
 if ($compression) {
        $output_file = 'compress.zlib://' . $output_file . '.gz';
 }
@@ -400,7 +400,7 @@
                                        $html_output = is_resource($html_file);
                                        break;
                                case '--version':
-                                       echo '$Revision: 1.300 $'."\n";
+                                       echo '$Revision: 1.301 $'."\n";
                                        exit(1);
                                default:
                                        echo "Illegal switch specified!\n";
@@ -714,7 +714,9 @@
 
                        /* Use shtool to find out if there is glibtool present 
(MacOSX) */
                        $sys_libtool_path = shell_exec(dirname(__FILE__) . 
'/build/shtool path glibtool libtool');
-                       $sys_libtool = shell_exec(str_replace("\n", "", 
$sys_libtool_path) . ' --version');
+                       if ($sys_libtool_path) {
+                               $sys_libtool = shell_exec(str_replace("\n", "", 
$sys_libtool_path) . ' --version');
+                       }
 
                        /* Try the most common flags for 'version' */
                        $flags = array('-v', '-V', '--version');
@@ -1860,10 +1862,10 @@
 
        if ($html_output)
        {
-               fwrite($html_file, "<h2>Time Start: " . date('Y-m-d H:i:s', 
$start_time) . "</h2>\n");
+               fwrite($html_file, "<h2>Time Start: " . @date('Y-m-d H:i:s', 
$start_time) . "</h2>\n");
                fwrite($html_file, "<table>\n");
        }
-       echo "TIME START " . date('Y-m-d H:i:s', $start_time) . 
"\n=====================================================================\n";
+       echo "TIME START " . @date('Y-m-d H:i:s', $start_time) . 
"\n=====================================================================\n";
 }
 
 function show_end($end_time)
@@ -1873,9 +1875,9 @@
        if ($html_output)
        {
                fwrite($html_file, "</table>\n");
-               fwrite($html_file, "<h2>Time End: " . date('Y-m-d H:i:s', 
$end_time) . "</h2>\n");
+               fwrite($html_file, "<h2>Time End: " . @date('Y-m-d H:i:s', 
$end_time) . "</h2>\n");
        }
-       echo 
"=====================================================================\nTIME 
END " . date('Y-m-d H:i:s', $end_time) . "\n";
+       echo 
"=====================================================================\nTIME 
END " . @date('Y-m-d H:i:s', $end_time) . "\n";
 }
 
 function show_summary()

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

Reply via email to