From f35fd5d79a7a4208a92e9948633eb7f490080803 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Tue, 18 Jul 2017 17:09:24 +0200 Subject: [PATCH] Squish: Update configuration check in tst_cli_output_console Change-Id: I0890ce54b76ec8d01095e8ed0c5bbb4dc4f18390 Reviewed-by: Christian Stenger --- tests/system/suite_debugger/tst_cli_output_console/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 81b0d1e56a5..7acaedc0fe3 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: