fuzzer: Only print tasks we're running

This commit is contained in:
Sergio Martins
2019-10-15 16:40:38 +01:00
parent d0c7c9eb99
commit af796f6e69
2 changed files with 5 additions and 2 deletions

View File

@@ -82,10 +82,12 @@ void Fuzzer::runTest(const Test &test)
createLayout(test.initialLayout);
int index = 0;
for (const auto &op : test.operations) {
index++;
op->execute();
qDebug() << "Ran" << op->description();
if (op->hasParams())
qDebug() << "Ran" << op->description();
QTest::qWait(m_operationDelayMS);
DockRegistry::self()->checkSanityAll();
}