tests: skip tst_QWidget::renderInvisible() on Wayland

Task-number: QTBUG-107157
Change-Id: I405a5dfc915b754e30389208cc0bdb01f17ed166
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
(cherry picked from commit 584aa8ad41303ff089c99c3ded93bb085c78745f)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Liang Qi 2022-10-12 14:10:30 +02:00 committed by Qt Cherry-pick Bot
parent 27c3e9fb41
commit d5f2fadef4

View File

@ -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()));