From 335f6e4363ba47c15da50baa6ca3982138c2fc9d Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Mon, 21 Sep 2015 13:11:38 +0200 Subject: Squish: Stabilize tst_cli_output_console Skip frequently failing qDebug output from Qt 5.4.1 MinGW. Change-Id: I20d0fed184e3935484179e9509c902eb94e48ead Task-number: QTCREATORBUG-15067 Reviewed-by: Christian Stenger --- tests/system/suite_debugger/tst_cli_output_console/test.py | 8 +++++++- 1 file changed, 7 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 4a1386d089..7fc062637b 100644 --- a/tests/system/suite_debugger/tst_cli_output_console/test.py +++ b/tests/system/suite_debugger/tst_cli_output_console/test.py @@ -78,7 +78,13 @@ def main(): appOutput = str(waitForObject(":Qt Creator_Core::OutputWindow").plainText) verifyOutput(appOutput, outputStdOut, "std::cout", "Application Output") verifyOutput(appOutput, outputStdErr, "std::cerr", "Application Output") - verifyOutput(appOutput, outputQDebug, "qDebug()", "Application Output") + if (checkedTargets[kit] == Targets.DESKTOP_541_GCC + and platform.system() in ('Windows', 'Microsoft')): + test.log("Skipping qDebug() from %s (unstable, QTCREATORBUG-15067)" + % Targets.getStringForTarget(Targets.DESKTOP_541_GCC)) + else: + verifyOutput(appOutput, outputQDebug, + "qDebug()", "Application Output") clickButton(waitForObject(":Qt Creator_CloseButton")) except: test.fatal("Could not find Application Output Window", -- cgit v1.2.1