summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Faure <david.faure@kdab.com>2013-08-20 15:52:19 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-20 17:59:27 +0200
commit2ccf9957254e17b2d932a45334656f03dc06ef50 (patch)
tree6db78d2470e1091a917e72e9f1d79270566fe538 /tests
parent6281acaf8f5cd11a7fa6eb40da68b4707a41e148 (diff)
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 <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/widgets/graphicsview/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp3
1 files changed, 3 insertions, 0 deletions
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;