diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2011-02-28 16:11:53 +0100 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2011-02-28 16:11:53 +0100 |
commit | 3b1a1a0aa7a21aa10af4563b2bdbeb4b65533ed0 (patch) | |
tree | d2d2409b814c9c3e0bda79d90f3c745644ae4e56 /mysql-test/lib | |
parent | 0bd4c22236819dc3f45fea146a48b4167a8ed901 (diff) | |
parent | 3fceb5b6995fd0251ca1a8fae74773f85a116ed7 (diff) | |
download | mariadb-git-3b1a1a0aa7a21aa10af4563b2bdbeb4b65533ed0.tar.gz |
Attempt at solving missing end of mtr output on Windows
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/mtr_report.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/lib/mtr_report.pm b/mysql-test/lib/mtr_report.pm index dcf83260720..2fec916c724 100644 --- a/mysql-test/lib/mtr_report.pm +++ b/mysql-test/lib/mtr_report.pm @@ -32,6 +32,7 @@ our @EXPORT= qw(report_option mtr_print_line mtr_print_thick_line use mtr_match; use My::Platform; use POSIX qw[ _exit ]; +use IO::Handle qw[ flush ]; require "mtr_io.pl"; my $tot_real_time= 0; @@ -487,6 +488,7 @@ sub mtr_warning (@) { # Print error to screen and then exit sub mtr_error (@) { + IO::Handle::flush(\*STDOUT) if IS_WINDOWS; print STDERR _name(). _timestamp(). "mysql-test-run: *** ERROR: ". join(" ", @_). "\n"; if (IS_WINDOWS) |