summaryrefslogtreecommitdiff
path: root/mysql-test/mysql-test-run.pl
diff options
context:
space:
mode:
authorsayantan.dutta@oracle.com <>2012-11-20 15:33:45 +0530
committersayantan.dutta@oracle.com <>2012-11-20 15:33:45 +0530
commitea69084e02e80d0dd07b1fc95f53167eecc6a0fd (patch)
tree32e8ab05cf33997152e80704492cc532876b9387 /mysql-test/mysql-test-run.pl
parente4a6dbd3da7b4e80349be696934b48a266612b18 (diff)
downloadmariadb-git-ea69084e02e80d0dd07b1fc95f53167eecc6a0fd.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-xmysql-test/mysql-test-run.pl8
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();