From 8ece58b87e94a63402164e5fdae3057561229ff3 Mon Sep 17 00:00:00 2001 From: "msvensson@pilot.mysql.com" <> Date: Sat, 3 May 2008 16:10:23 +0200 Subject: [PATCH] mysql-test-run.pl: Print the scalar value of $completed, not the array values --- mysql-test/mysql-test-run.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 4838ddefe54..eb251a93049 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -344,7 +344,7 @@ sub main { # Not all tests completed, failure mtr_report(); - mtr_report(@$completed, " of $num_tests completed."); + mtr_report(int(@$completed), " of $num_tests completed."); mtr_error("Test failed.", "To continue, re-run with '--force'"); }