1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

mysql-test-run.pl:

Print the scalar value of $completed, not the array values


mysql-test/mysql-test-run.pl:
  Print the scalar value of $completed, not the array values
This commit is contained in:
unknown
2008-05-03 16:10:23 +02:00
parent 4aee341cf6
commit 9b80152fda

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