Commit 3073f981 authored by unknown's avatar unknown

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
parent f06afd96
......@@ -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'");
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment