summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/kernel/qwidget
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2022-10-12 14:10:30 +0200
committerLiang Qi <liang.qi@qt.io>2022-10-14 17:18:52 +0200
commit584aa8ad41303ff089c99c3ded93bb085c78745f (patch)
tree6afc0faa181360c1527d8982a8fe45e5ff0018c5 /tests/auto/widgets/kernel/qwidget
parent80762373eab050853ea61d7336d4d14865fd1d8e (diff)
tests: skip tst_QWidget::renderInvisible() on Wayland
Task-number: QTBUG-107157 Pick-to: 6.4 6.2 Change-Id: I405a5dfc915b754e30389208cc0bdb01f17ed166 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
Diffstat (limited to 'tests/auto/widgets/kernel/qwidget')
-rw-r--r--tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp b/tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp
index 8365dfac43..59d3864b93 100644
--- a/tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp
+++ b/tests/auto/widgets/kernel/qwidget/tst_qwidget.cpp
@@ -7529,6 +7529,9 @@ void tst_QWidget::renderInvisible()
if (m_platform == QStringLiteral("xcb"))
QSKIP("QTBUG-26424");
+ if (m_platform.startsWith(QLatin1String("wayland"), Qt::CaseInsensitive))
+ QSKIP("Wayland: Skip this test, see also QTBUG-107157");
+
QScopedPointer<QCalendarWidget> calendar(new QCalendarWidget);
calendar->move(m_availableTopLeft + QPoint(100, 100));
calendar->setWindowTitle(QLatin1String(QTest::currentTestFunction()));