From cf0d34bf18cc1dcac0bdfbed5b2be10c79902543 Mon Sep 17 00:00:00 2001 From: Liang Qi Date: Tue, 2 Jan 2024 11:13:41 +0100 Subject: tests: XFAIL tst_QShortcut::windowShortcut() on Wayland Pick-to: 6.7 Task-number: QTBUG-120334 Change-Id: I6cafda6fa8f8c9b20a6695b982413057ddf56dd2 Reviewed-by: Axel Spoerl --- tests/auto/gui/kernel/qshortcut/tst_qshortcut.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/auto/gui/kernel/qshortcut/tst_qshortcut.cpp') diff --git a/tests/auto/gui/kernel/qshortcut/tst_qshortcut.cpp b/tests/auto/gui/kernel/qshortcut/tst_qshortcut.cpp index 29954e6dcc..7509d58426 100644 --- a/tests/auto/gui/kernel/qshortcut/tst_qshortcut.cpp +++ b/tests/auto/gui/kernel/qshortcut/tst_qshortcut.cpp @@ -48,6 +48,10 @@ void tst_QShortcut::windowShortcut() new QShortcut(Qt::CTRL | Qt::Key_Q, &w, SLOT(close())); w.show(); QVERIFY(QTest::qWaitForWindowExposed(&w)); + + if (QGuiApplication::platformName().startsWith(QLatin1String("wayland"), Qt::CaseInsensitive)) + QEXPECT_FAIL("", "It failed on Wayland, QTBUG-120334", Abort); + QTRY_VERIFY(QGuiApplication::applicationState() == Qt::ApplicationActive); QTest::sendKeyEvent(QTest::Click, &w, Qt::Key_Q, 'q', Qt::ControlModifier); QTRY_VERIFY(!w.isVisible()); -- cgit v1.2.3