From: Melvyn Sopacua Date: Sat, 1 Feb 2003 13:28:32 +0000 (+0000) Subject: Make it easier to diff results of several runs in one day. X-Git-Tag: RELEASE_0_5~1333 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4eecf91993dcd431eee5e93e409ce3b1e179192;p=php Make it easier to diff results of several runs in one day. --- diff --git a/run-tests.php b/run-tests.php index 59515cbb4c..ade56e038e 100755 --- a/run-tests.php +++ b/run-tests.php @@ -430,7 +430,7 @@ if (!getenv('NO_INTERACTION')) { $compression = 0; if ($just_save_results || !mail_qa_team($failed_tests_data, $compression, $status)) { - $output_file = 'php_test_results_' . date('Ymd') . ( $compression ? '.txt.gz' : '.txt' ); + $output_file = 'php_test_results_' . date('Ymd_Hi') . ( $compression ? '.txt.gz' : '.txt' ); $fp = fopen($output_file, "w"); fwrite($fp, $failed_tests_data); fclose($fp);