aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/autotest/testcodeparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/autotest/testcodeparser.cpp')
-rw-r--r--plugins/autotest/testcodeparser.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp
index 0f950d305b..2fc0fff3ca 100644
--- a/plugins/autotest/testcodeparser.cpp
+++ b/plugins/autotest/testcodeparser.cpp
@@ -69,6 +69,15 @@ TestCodeParser::~TestCodeParser()
clearMaps();
}
+void TestCodeParser::setState(State state)
+{
+ m_parserState = state;
+ if (m_parserState == Disabled) {
+ m_pendingUpdate = m_fullUpdatePostPoned = m_partialUpdatePostPoned = false;
+ m_postPonedFiles.clear();
+ }
+}
+
void TestCodeParser::emitUpdateTestTree()
{
QTimer::singleShot(1000, this, SLOT(updateTestTree()));
@@ -527,6 +536,9 @@ bool TestCodeParser::postponed(const QStringList &fileList)
m_partialUpdatePostPoned = true;
}
return true;
+ case Disabled:
+ qWarning("Checking for postponing but being disabled...");
+ return false;
}
QTC_ASSERT(false, return false); // should not happen at all
}
@@ -565,7 +577,8 @@ void TestCodeParser::scanForTests(const QStringList &fileList)
m_parserState = Idle;
emit parsingFinished();
break;
- case Idle:
+ default:
+ qWarning("I should not be here...");
break;
}
}