summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authormsvensson@shellback.(none) <>2006-10-18 18:02:07 +0200
committermsvensson@shellback.(none) <>2006-10-18 18:02:07 +0200
commitf83e9e4f18d4b14668286ff04056f06ded107c31 (patch)
treee20dfd97dc5301022fc1b77fffe3e46bce73cc12 /mysql-test
parentd71d1a64de983dc5501dedb06fa68ffa85651880 (diff)
parent4cefd49b81a4f07caf1931c97b65ecc4686a0fbd (diff)
downloadmariadb-git-f83e9e4f18d4b14668286ff04056f06ded107c31.tar.gz
Merge shellback.(none):/home/msvensson/mysql/mysql-4.1-maint
into shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
Diffstat (limited to 'mysql-test')
-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",