summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Tomkins <toby.tomkins@nokia.com>2012-06-22 13:16:43 +1000
committerQt by Nokia <qt-info@nokia.com>2012-06-22 05:21:54 +0200
commit786341fda11530128a92ac9cbe8f2c235d559210 (patch)
tree30afe0a1a4992b3f785f75fc8c4090a1820688b0
parentf3d59d3c9cb466a3e87222562770e4f27157ddd4 (diff)
tst_qgraphicsview hoverLeave regressed
Task-number: QTBUG-26274 Change-Id: Ieafc6bf4a7fa5287985610a4dea57fbe6f3a9eba Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
-rw-r--r--tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.cpp b/tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.cpp
index 5200109097..d70d106f45 100644
--- a/tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.cpp
+++ b/tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.cpp
@@ -4576,6 +4576,9 @@ void tst_QGraphicsView::hoverLeave()
QCursor::setPos(1,1);
QTest::qWait(200);
+#ifdef Q_OS_MAC
+ QEXPECT_FAIL("", "QTBUG-26274 - behaviour regression", Abort);
+#endif
QVERIFY(item->receivedLeaveEvent);
QCOMPARE(item->leaveWidget, view.viewport());
}