diff options
author | hjk <hjk@qt.io> | 2020-03-26 10:11:39 +0100 |
---|---|---|
committer | hjk <hjk@qt.io> | 2020-03-27 14:11:11 +0000 |
commit | 77c4caf4ea6ed993c1c636d3bd85906056a93a8a (patch) | |
tree | 8163778eb7138b575b7e419bbeba615b58accc86 /src/plugins/autotest/quick/quicktestparser.cpp | |
parent | 223281222d7fbb3df270b8d573a7b44a102a3283 (diff) | |
download | qt-creator-77c4caf4ea6ed993c1c636d3bd85906056a93a8a.tar.gz |
Autotest: Keep track of generating framework in TestTreeItem
... and TestConfiguration. This allows dropping code that
reconstruct framework ids and framework lookup by id.
Change-Id: I0bb1e6e135376e21f96b9fab7971aa097787e483
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/autotest/quick/quicktestparser.cpp')
-rw-r--r-- | src/plugins/autotest/quick/quicktestparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/autotest/quick/quicktestparser.cpp b/src/plugins/autotest/quick/quicktestparser.cpp index 053e9c88b1..923ead8c2f 100644 --- a/src/plugins/autotest/quick/quicktestparser.cpp +++ b/src/plugins/autotest/quick/quicktestparser.cpp @@ -49,7 +49,7 @@ TestTreeItem *QuickTestParseResult::createTestTreeItem() const if (itemType == TestTreeItem::Root || itemType == TestTreeItem::TestDataTag) return nullptr; - QuickTestTreeItem *item = new QuickTestTreeItem(name, fileName, itemType); + QuickTestTreeItem *item = new QuickTestTreeItem(framework, name, fileName, itemType); item->setProFile(proFile); item->setLine(line); item->setColumn(column); |