From c4eecf91993dcd431eee5e93e409ce3b1e179192 Mon Sep 17 00:00:00 2001 From: Melvyn Sopacua Date: Sat, 1 Feb 2003 13:28:32 +0000 Subject: [PATCH] Make it easier to diff results of several runs in one day. --- run-tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1