Commit 9b80152f 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 4aee341c
...@@ -344,7 +344,7 @@ sub main { ...@@ -344,7 +344,7 @@ sub main {
# Not all tests completed, failure # Not all tests completed, failure
mtr_report(); mtr_report();
mtr_report(@$completed, " of $num_tests completed."); mtr_report(int(@$completed), " of $num_tests completed.");
mtr_error("Test failed.", mtr_error("Test failed.",
"To continue, re-run with '--force'"); "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