diff options
author | unknown <sayantan.dutta@oracle.com> | 2012-11-20 15:33:45 +0530 |
---|---|---|
committer | unknown <sayantan.dutta@oracle.com> | 2012-11-20 15:33:45 +0530 |
commit | fe1bb698622e707b2443758711cba48f81a28d4d (patch) | |
tree | 32e8ab05cf33997152e80704492cc532876b9387 /mysql-test/mysql-test-run.pl | |
parent | 21345a6aa831067d3d1322f853a04d5cb2aee83e (diff) | |
download | mariadb-git-fe1bb698622e707b2443758711cba48f81a28d4d.tar.gz |
BUG #15895810 - REQUIRE ADDITIONAL INFORMATION WITH THE --RESULT-FILE OPTION OF MTR
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index c8589bb50eb..dc8fcf342d5 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -335,14 +335,6 @@ my $opt_parallel= $ENV{MTR_PARALLEL} || 1; select(STDOUT); $| = 1; # Automatically flush STDOUT -# Used by --result-file for for formatting times - -sub isotime($) { - my ($sec,$min,$hr,$day,$mon,$yr)= gmtime($_[0]); - return sprintf "%d-%02d-%02dT%02d:%02d:%02dZ", - $yr+1900, $mon+1, $day, $hr, $min, $sec; -} - main(); |