aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2019-06-24 14:14:24 +0200
committerRobert Loehning <robert.loehning@qt.io>2019-06-26 06:58:32 +0000
commit38685de8942d35e7fe24cc3b32dfab85392eeac0 (patch)
tree639627bf55f2d32313e9f245ec558dc363022f86 /tests
parentc54ef80a4e44f630e01fac84e182dbdaf204131a (diff)
Squish: Update openCmakeProject
Change-Id: I17f1a271eafbcff24987fbd7e31dc6cc8c789b84 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/shared/project.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py
index a52c9e5b79..a0eea63b82 100644
--- a/tests/system/shared/project.py
+++ b/tests/system/shared/project.py
@@ -53,17 +53,17 @@ def openQmakeProject(projectPath, targets=Targets.desktopTargetClasses(), fromWe
def openCmakeProject(projectPath, buildDir):
def additionalFunction():
- pChooser = waitForObject("{leftWidget={text='Default' type='QCheckBox' unnamed='1' "
+ pChooser = waitForObject("{leftWidget={text='Debug' type='QCheckBox' unnamed='1' "
"visible='1'} type='Utils::PathChooser' unnamed='1' visible='1'}")
lineEdit = getChildByClass(pChooser, "Utils::FancyLineEdit")
replaceEditorContent(lineEdit, buildDir)
- # disable all build configurations except "Default"
- configs = ['Debug', 'Release', 'Release with Debug Information', 'Minimum Size Release']
+ # disable all build configurations except "Debug"
+ configs = ['Release', 'Release with Debug Information', 'Minimum Size Release']
for checkbox in configs:
ensureChecked(waitForObject("{text='%s' type='QCheckBox' unnamed='1' visible='1' "
"window=':Qt Creator_Core::Internal::MainWindow'}"
% checkbox), False)
- ensureChecked(waitForObject("{text='Default' type='QCheckBox' unnamed='1' visible='1' "
+ ensureChecked(waitForObject("{text='Debug' type='QCheckBox' unnamed='1' visible='1' "
"window=':Qt Creator_Core::Internal::MainWindow'}"), True)
invokeMenuItem("File", "Open File or Project...")