Rename tst_common to tst_docks

Now that tst_docks was all ported let's have the old name again.
Also cmake -jN now works, as tst_docks is called by the tests_launcher
while tst_common was not
This commit is contained in:
Sergio Martins
2020-11-17 15:44:49 +00:00
parent f4e33c1409
commit aa39a71ae5
10 changed files with 182 additions and 183 deletions

View File

@@ -40,7 +40,7 @@ static QStringList availableTests()
for (QString &function : functions) {
function = function.replace("()", "").trimmed();
function = function.replace(" ", ":"); // datatags
function = function.replace("KDDockWidgets::TestDocks:", "");
function = function.replace("TestDocks:", "");
if (!function.isEmpty())
result << function;
}