summaryrefslogtreecommitdiff
path: root/plugins/autotest/testcodeparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/autotest/testcodeparser.cpp')
-rw-r--r--plugins/autotest/testcodeparser.cpp44
1 files changed, 33 insertions, 11 deletions
diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp
index ed8e1facf4..004168ab6a 100644
--- a/plugins/autotest/testcodeparser.cpp
+++ b/plugins/autotest/testcodeparser.cpp
@@ -59,7 +59,8 @@ TestCodeParser::TestCodeParser(TestTreeModel *parent)
m_pendingUpdate(false),
m_fullUpdatePostPoned(false),
m_partialUpdatePostPoned(false),
- m_parserState(Idle)
+ m_dirty(true),
+ m_parserState(Disabled)
{
// connect to ProgressManager to post-pone test parsing when CppModelManager is parsing
auto progressManager = qobject_cast<Core::ProgressManager *>(Core::ProgressManager::instance());
@@ -76,12 +77,22 @@ TestCodeParser::~TestCodeParser()
clearCache();
}
+ProjectExplorer::Project *currentProject()
+{
+ const ProjectExplorer::SessionManager *session = ProjectExplorer::SessionManager::instance();
+ if (!session || !session->hasProjects())
+ return 0;
+ return session->startupProject();
+}
+
void TestCodeParser::setState(State state)
{
m_parserState = state;
if (m_parserState == Disabled) {
m_pendingUpdate = m_fullUpdatePostPoned = m_partialUpdatePostPoned = false;
m_postPonedFiles.clear();
+ } else if (m_parserState == Idle && m_dirty && currentProject()) {
+ scanForTests(m_postPonedFiles.toList());
}
}
@@ -90,14 +101,6 @@ void TestCodeParser::emitUpdateTestTree()
QTimer::singleShot(1000, this, SLOT(updateTestTree()));
}
-ProjectExplorer::Project *currentProject()
-{
- const ProjectExplorer::SessionManager *session = ProjectExplorer::SessionManager::instance();
- if (!session || !session->hasProjects())
- return 0;
- return session->startupProject();
-}
-
void TestCodeParser::updateTestTree()
{
if (!m_parserEnabled) {
@@ -578,14 +581,29 @@ bool TestCodeParser::postponed(const QStringList &fileList)
}
return true;
case Disabled:
- qWarning("Checking for postponing but being disabled...");
- return false;
+ break;
}
QTC_ASSERT(false, return false); // should not happen at all
}
void TestCodeParser::scanForTests(const QStringList &fileList)
{
+ if (m_parserState == Disabled) {
+ m_dirty = true;
+ if (fileList.isEmpty()) {
+ m_fullUpdatePostPoned = true;
+ m_partialUpdatePostPoned = false;
+ m_postPonedFiles.clear();
+ } else {
+ if (!m_fullUpdatePostPoned) {
+ m_partialUpdatePostPoned = true;
+ foreach (const QString &file, fileList)
+ m_postPonedFiles.insert(file);
+ }
+ }
+ return;
+ }
+
if (postponed(fileList))
return;
@@ -730,6 +748,7 @@ void TestCodeParser::onFinished()
case FullParse:
m_parserState = Idle;
emit parsingFinished();
+ m_dirty = false;
break;
default:
qWarning("I should not be here...");
@@ -752,6 +771,9 @@ void TestCodeParser::onPartialParsingFinished()
tmp << file;
m_postPonedFiles.clear();
scanForTests(tmp);
+ } else {
+ m_dirty = false;
+ emit parsingFinished();
}
}