diff options
author | Robert Loehning <robert.loehning@qt.io> | 2017-07-18 17:09:24 +0200 |
---|---|---|
committer | Robert Loehning <robert.loehning@qt.io> | 2017-07-19 09:13:05 +0000 |
commit | f35fd5d79a7a4208a92e9948633eb7f490080803 (patch) | |
tree | d68e9757883a4d0e755c88c4254dd1664b3406d2 /tests | |
parent | bfe50832b52dfa964c1d53438bb34df082fae310 (diff) | |
download | qt-creator-f35fd5d79a7a4208a92e9948633eb7f490080803.tar.gz |
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.py | 3 |
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: |