diff options
author | Robert Loehning <robert.loehning@digia.com> | 2013-01-18 16:31:48 +0100 |
---|---|---|
committer | Robert Loehning <robert.loehning@digia.com> | 2013-01-23 12:06:26 +0100 |
commit | 3f570a79019294d884e363d2c8ef763ab373afd8 (patch) | |
tree | caf8a8b89d6f34f51c8465731b680603f81c34ee /tests/system/suite_qtquick | |
parent | 1f80a41ffc07fadbe19ee6f642e25301352685c1 (diff) | |
download | qt-creator-3f570a79019294d884e363d2c8ef763ab373afd8.tar.gz |
Squish: Enable testing with MSVC again
Change-Id: Ib6051caa6e3a52a611aa24c0bf0c4d89939fdd58
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
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") |