forked from qt-creator/qt-creator
		
	AutoTest: Simplify internal function
...and silence a krazy2 warning. Change-Id: I72efc50baa53f03250813cae646da0f7c07a83f5 Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
		@@ -142,11 +142,8 @@ static QString rcInfo(const TestConfiguration * const config)
 | 
			
		||||
 | 
			
		||||
static QString constructOmittedDetailsString(const QStringList &omitted)
 | 
			
		||||
{
 | 
			
		||||
    QString details = TestRunner::tr("Omitted the following arguments specified on the run "
 | 
			
		||||
                                     "configuration page for \"%1\":");
 | 
			
		||||
    for (const QString &arg : omitted)
 | 
			
		||||
        details += "\n" + arg;
 | 
			
		||||
    return details;
 | 
			
		||||
    return TestRunner::tr("Omitted the following arguments specified on the run "
 | 
			
		||||
                          "configuration page for \"%1\":") + '\n' + omitted.join('\n');
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void performTestRun(QFutureInterface<TestResultPtr> &futureInterface,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user