From 08f9d72c515e9c0528da26420ffa9774cfc0341f Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Mon, 5 Mar 2012 17:28:28 +0100 Subject: [PATCH] Squish: Skipping unstable test on Mac Change-Id: Icf8e78487d2e734c79aa2b93401a911769a9545e Reviewed-by: Christian Stenger Reviewed-by: Bill King --- tests/system/suite_debugger/tst_cli_output_console/test.py | 3 +++ 1 file changed, 3 insertions(+) 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 3d04ceda264..50c8a7645c1 100644 --- a/tests/system/suite_debugger/tst_cli_output_console/test.py +++ b/tests/system/suite_debugger/tst_cli_output_console/test.py @@ -8,6 +8,9 @@ def __handlerunControlFinished__(object, runControlP): runControlFinished = True def main(): + if platform.system() == "Darwin" and JIRA.isBugStillOpen(6853, JIRA.Bug.CREATOR): + test.xverify(False, "This test is unstable on Mac, see QTCREATORBUG-6853.") + return global runControlFinished outputQDebug = "Output from qDebug()." outputStdOut = "Output from std::cout."