forked from qt-creator/qt-creator
AutoTest: Fix test compilation
Also amends 33cdb052ba
Change-Id: Ic4cf8671cf97c9d94fe933b9d29cb515355f5e6b
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -277,12 +277,12 @@ void AutoTestUnitTests::testCodeParserBoostTest()
|
||||
|
||||
void AutoTestUnitTests::testCodeParserBoostTest_data()
|
||||
{
|
||||
QTest::addColumn<QString>("projectFilePath");
|
||||
QTest::addColumn<FilePath>("projectFilePath");
|
||||
QTest::addColumn<QString>("extension");
|
||||
QTest::newRow("simpleBoostTest")
|
||||
<< QString(m_tmpDir->path() + "/simple_boost/simple_boost.pro") << QString(".pro");
|
||||
<< m_tmpDir->filePath() / "simple_boost/simple_boost.pro" << QString(".pro");
|
||||
QTest::newRow("simpleBoostTestQbs")
|
||||
<< QString(m_tmpDir->path() + "/simple_boost/simple_boost.qbs") << QString(".qbs");
|
||||
<< m_tmpDir->filePath() / "simple_boost/simple_boost.qbs" << QString(".qbs");
|
||||
}
|
||||
|
||||
static int executeScenario(const QString &scenario)
|
||||
|
Reference in New Issue
Block a user