From 2b525b424603c13a6c68652cbfb081dba05af800 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 27 Feb 2024 15:28:34 +0100 Subject: [PATCH] AutoTest: Suppress progress bar more aggressively Task-number: QTCREATORBUG-30447 Change-Id: I4386d522819b9f361f179ccda6a0fd3c759c389d Reviewed-by: David Schulz Reviewed-by: Christian Kandeler --- src/plugins/autotest/testcodeparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/autotest/testcodeparser.cpp b/src/plugins/autotest/testcodeparser.cpp index 9e46232c5bc..9962a08c621 100644 --- a/src/plugins/autotest/testcodeparser.cpp +++ b/src/plugins/autotest/testcodeparser.cpp @@ -361,7 +361,7 @@ void TestCodeParser::scanForTests(const QSet &filePaths, return true; return cppSnapshot.contains(fn); }); - m_withTaskProgress = filteredFiles.size() > 5; + m_withTaskProgress = isFullParse || filteredFiles.size() > 20; qCDebug(LOG) << "Starting scan of" << filteredFiles.size() << "(" << files.size() << ")" << "files with" << codeParsers.size() << "parsers";