summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/system/suite_debugger/tst_cli_output_console/test.py8
1 files changed, 7 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 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",