From 513cc235fe6450bfaf94d0093ff5034838b3780a Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Wed, 6 Apr 2016 17:29:12 +0200 Subject: [PATCH] Squish: Clean up expected fails Change-Id: I216c6f6453412e65c48ddceaf950bd1112c32a42 Reviewed-by: Christian Stenger --- tests/system/suite_debugger/tst_cli_output_console/test.py | 2 +- tests/system/suite_debugger/tst_qml_locals/test.py | 2 +- 2 files changed, 2 insertions(+), 2 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 2356aca08b8..97dd1a69375 100644 --- a/tests/system/suite_debugger/tst_cli_output_console/test.py +++ b/tests/system/suite_debugger/tst_cli_output_console/test.py @@ -29,7 +29,7 @@ project = "untitled" 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.") + test.xfail("This test is unstable on Mac, see QTCREATORBUG-6853.") return outputQDebug = "Output from qDebug()." outputStdOut = "Output from std::cout." diff --git a/tests/system/suite_debugger/tst_qml_locals/test.py b/tests/system/suite_debugger/tst_qml_locals/test.py index e7a4afbc4d2..161a7bcb0cc 100644 --- a/tests/system/suite_debugger/tst_qml_locals/test.py +++ b/tests/system/suite_debugger/tst_qml_locals/test.py @@ -28,7 +28,7 @@ source("Tree.py") def main(): if os.getenv("SYSTEST_OPENGL_MISSING") == "1": - test.xverify(False, "This test needs OpenGL - skipping...") + test.xfail("This test needs OpenGL - skipping...") return projName = "simpleQuickUI2.qmlproject" projFolder = os.path.dirname(findFile("testdata", "simpleQuickUI2/%s" % projName))