summaryrefslogtreecommitdiff
path: root/mysql-test/lib
diff options
context:
space:
mode:
authorunknown <msvensson@shellback.(none)>2006-10-18 18:02:07 +0200
committerunknown <msvensson@shellback.(none)>2006-10-18 18:02:07 +0200
commit1355b0dc9bbe1b1ea8689e0880e24a1d0ac58348 (patch)
treee20dfd97dc5301022fc1b77fffe3e46bce73cc12 /mysql-test/lib
parent90b23da3e2647ea57cc289bfcb92d3f986eed753 (diff)
parentea80f1a07a009ec9ee8097ea885f2fcd44495107 (diff)
downloadmariadb-git-1355b0dc9bbe1b1ea8689e0880e24a1d0ac58348.tar.gz
Merge shellback.(none):/home/msvensson/mysql/mysql-4.1-maint
into shellback.(none):/home/msvensson/mysql/mysql-5.0-maint mysql-test/lib/mtr_report.pl: Auto merged
Diffstat (limited to 'mysql-test/lib')
-rw-r--r--mysql-test/lib/mtr_report.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/lib/mtr_report.pl b/mysql-test/lib/mtr_report.pl
index e92cac5cfba..8d7de9d1a4b 100644
--- a/mysql-test/lib/mtr_report.pl
+++ b/mysql-test/lib/mtr_report.pl
@@ -203,8 +203,9 @@ sub mtr_report_stats ($) {
else
{
my $ratio= $tot_passed * 100 / $tot_tests;
- printf "Failed $tot_failed/$tot_tests tests, " .
- "%.2f\% were successful.\n\n", $ratio;
+ print "Failed $tot_failed/$tot_tests tests, ";
+ printf("%.2f", $ratio);
+ print "\% were successful.\n\n";
print
"The log files in var/log may give you some hint\n",
"of what went wrong.\n",