aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2017-07-18 17:09:24 +0200
committerRobert Loehning <robert.loehning@qt.io>2017-07-19 09:13:05 +0000
commitf35fd5d79a7a4208a92e9948633eb7f490080803 (patch)
treed68e9757883a4d0e755c88c4254dd1664b3406d2 /tests
parentbfe50832b52dfa964c1d53438bb34df082fae310 (diff)
Squish: Update configuration check in tst_cli_output_console
Change-Id: I0890ce54b76ec8d01095e8ed0c5bbb4dc4f18390 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/suite_debugger/tst_cli_output_console/test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/system/suite_debugger/tst_cli_output_console/test.py b/tests/system/suite_debugger/tst_cli_output_console/test.py
index 81b0d1e56a..7acaedc0fe 100644
--- a/tests/system/suite_debugger/tst_cli_output_console/test.py
+++ b/tests/system/suite_debugger/tst_cli_output_console/test.py
@@ -49,7 +49,8 @@ def main():
invokeMenuItem("File", "Save All")
openDocument(project + "." + project + "\\.pro")
proEditor = waitForObject(":Qt Creator_TextEditor::TextEditorWidget")
- test.verify("CONFIG += console" in str(proEditor.plainText), "Verifying that program is configured with console")
+ test.verify("CONFIG += c++11 console" in str(proEditor.plainText),
+ "Verifying that program is configured with console")
availableConfigs = iterateBuildConfigs(len(checkedTargets))
if not availableConfigs: