diff options
author | unknown <msvensson@shellback.(none)> | 2006-10-17 10:31:06 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-10-17 10:31:06 +0200 |
commit | 40ac968926f4aefbe0cab4cb971cf3fb512bb38f (patch) | |
tree | 8457697500aa3bab9b8bd28b2c5ad23ac399c03c /mysql-test/lib | |
parent | dd5edc0aaa6280f3c4e514f4050a388ad4b870e4 (diff) | |
download | mariadb-git-40ac968926f4aefbe0cab4cb971cf3fb512bb38f.tar.gz |
Remove warnings
Set comment properly before calling mtr_report_test failed and report_failure_restart
mysql-test/lib/mtr_report.pl:
Remove warnings
No need to check ndb installed ok here, when that is detected comment is set to indicate the problem
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/mtr_report.pl | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/mysql-test/lib/mtr_report.pl b/mysql-test/lib/mtr_report.pl index b173896d48a..e92cac5cfba 100644 --- a/mysql-test/lib/mtr_report.pl +++ b/mysql-test/lib/mtr_report.pl @@ -130,16 +130,11 @@ sub mtr_report_test_failed ($) { my $tinfo= shift; $tinfo->{'result'}= 'MTR_RES_FAILED'; - if ( $tinfo->{'timeout'} ) + if ( defined $tinfo->{'timeout'} ) { print "[ fail ] timeout\n"; return; } - elsif ( $tinfo->{'ndb_test'} and $::cluster->[0]->{'installed_ok'} eq "NO") - { - print "[ fail ] ndbcluster start failure\n"; - return; - } else { print "[ fail ]\n"; |