aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_CSUP/tst_CSUP03/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_CSUP/tst_CSUP03/test.py')
-rw-r--r--tests/system/suite_CSUP/tst_CSUP03/test.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/system/suite_CSUP/tst_CSUP03/test.py b/tests/system/suite_CSUP/tst_CSUP03/test.py
index 53b532c05de..a20ac19ea4f 100644
--- a/tests/system/suite_CSUP/tst_CSUP03/test.py
+++ b/tests/system/suite_CSUP/tst_CSUP03/test.py
@@ -78,8 +78,10 @@ def main():
continue
if not startCreatorVerifyingClang(useClang):
continue
- projectName = createNewNonQtProject(tempDir(), "project-csup03",
- [Targets.DESKTOP_4_8_7_DEFAULT])
+ targetToChoose = Targets.DESKTOP_4_8_7_DEFAULT
+ if not qt4Available:
+ targetToChoose = Targets.DESKTOP_5_14_1_DEFAULT
+ projectName = createNewNonQtProject(tempDir(), "project-csup03", [targetToChoose])
checkCodeModelSettings(useClang)
openDocument("%s.Sources.main\\.cpp" % projectName)
editor = getEditorForFileSuffix("main.cpp")