Suppress repeated message in unit tests if not required.

This commit is contained in:
Matthias Koefferlein 2018-02-27 00:02:57 +01:00
parent 093bd526f7
commit 2ffdbb4d91
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ static bool
run_test (tl::TestBase *t, bool editable, bool slow, int repeat)
{
for (int i = 0; i < repeat; ++i) {
if (repeat > 0) {
if (repeat > 1) {
ut::noctrl << "Repeat iteration " << i + 1 << " of " << repeat;
}
if (! t->do_test (editable, slow)) {