diff options
Diffstat (limited to 'tests/system/suite_qtquick')
-rw-r--r-- | tests/system/suite_qtquick/tst_qtquick_creation/test.py | 3 | ||||
-rw-r--r-- | tests/system/suite_qtquick/tst_qtquick_creation2/test.py | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/tests/system/suite_qtquick/tst_qtquick_creation/test.py b/tests/system/suite_qtquick/tst_qtquick_creation/test.py index a2c28b1b87..03ad95954e 100644 --- a/tests/system/suite_qtquick/tst_qtquick_creation/test.py +++ b/tests/system/suite_qtquick/tst_qtquick_creation/test.py @@ -4,7 +4,8 @@ def main(): startApplication("qtcreator" + SettingsPath) # using a temporary directory won't mess up a potentially existing workingDir = tempDir() - projectName = createNewQtQuickApplication(workingDir, targets = QtQuickConstants.Targets.DESKTOP_474_GCC) + checkedTargets, projectName = createNewQtQuickApplication(workingDir, + targets = QtQuickConstants.Targets.DESKTOP_474_GCC) # wait for parsing to complete waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)") test.log("Building project") diff --git a/tests/system/suite_qtquick/tst_qtquick_creation2/test.py b/tests/system/suite_qtquick/tst_qtquick_creation2/test.py index f05ffc3f2b..529181611f 100644 --- a/tests/system/suite_qtquick/tst_qtquick_creation2/test.py +++ b/tests/system/suite_qtquick/tst_qtquick_creation2/test.py @@ -8,7 +8,9 @@ def main(): startApplication("qtcreator" + SettingsPath) # using a temporary directory won't mess up a potentially existing workingDir = tempDir() - projectName = createNewQtQuickApplication(workingDir, None, os.path.join(prepareTemplate(sourceExample), qmlFile)) + checkedTargets, projectName = createNewQtQuickApplication(workingDir, None, + os.path.join(prepareTemplate(sourceExample), qmlFile), + QtQuickConstants.Targets.DESKTOP_474_GCC) # wait for parsing to complete waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)") test.log("Building project") |