1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

mysql-test-run.pl:

Print the scalar value of $completed, not the array values
This commit is contained in:
msvensson@pilot.mysql.com
2008-05-03 16:10:23 +02:00
parent c9a37bec4b
commit 8ece58b87e

View File

@ -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'");
}