diff options
author | Melvyn Sopacua <msopacua@php.net> | 2003-02-01 13:28:32 +0000 |
---|---|---|
committer | Melvyn Sopacua <msopacua@php.net> | 2003-02-01 13:28:32 +0000 |
commit | c4eecf91993dcd431eee5e93e409ce3b1e179192 (patch) | |
tree | a65c520f8def504bdebe53f5900b4e2b78c62a37 /run-tests.php | |
parent | 9cff741d048be45b46ad77ff5df158799b7c3bfa (diff) | |
download | php-git-c4eecf91993dcd431eee5e93e409ce3b1e179192.tar.gz |
Make it easier to diff results of several runs in one day.
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |