forked from qt-creator/qt-creator
AutoTest: Tweak postponing parse once more
Postpone the parsing also if the build system is waiting for a parse. Change-Id: I56aaecfca05ea28a21c13747847b518d1eb8732f Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -35,7 +35,7 @@ using namespace ProjectExplorer;
|
||||
static bool isProjectParsing()
|
||||
{
|
||||
const BuildSystem *bs = ProjectManager::startupBuildSystem();
|
||||
return bs && bs->isParsing();
|
||||
return bs && (bs->isParsing() || bs->isWaitingForParse());
|
||||
}
|
||||
|
||||
TestCodeParser::TestCodeParser()
|
||||
|
||||
Reference in New Issue
Block a user