From 2ccf9957254e17b2d932a45334656f03dc06ef50 Mon Sep 17 00:00:00 2001 From: David Faure Date: Tue, 20 Aug 2013 15:52:19 +0200 Subject: [PATCH] tst_qgraphicsproxywidget: skip crashing test on Mac/Windows. Created QTBUG-33067 for tracking the issue, after some debugging. Change-Id: Iaf5556db2e0858e40a7cf6c9dbbe7e6fd6120bac Reviewed-by: Friedemann Kleint --- .../qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/auto/widgets/graphicsview/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp b/tests/auto/widgets/graphicsview/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp index c2e6d33adb..253cb7f0c2 100644 --- a/tests/auto/widgets/graphicsview/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp +++ b/tests/auto/widgets/graphicsview/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp @@ -3185,6 +3185,9 @@ void tst_QGraphicsProxyWidget::bypassGraphicsProxyWidget_data() void tst_QGraphicsProxyWidget::bypassGraphicsProxyWidget() { +#if defined(Q_OS_MAC) || defined(Q_OS_WIN) + QSKIP("Test case unstable on this platform, QTBUG-33067"); +#endif QFETCH(bool, bypass); QWidget *widget = new QWidget;