summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2022-10-12 15:22:26 +0200
committerLiang Qi <liang.qi@qt.io>2022-10-14 17:18:53 +0200
commitf990c256eb79810a5190ee096e9c1820f4a478b6 (patch)
treee6b7344081511da150edacedebf48a3211eb947b
parentca3c72b27a8d4c6e2313e89722ac637555f1d573 (diff)
tests: skip tst_QCompleter::showPopupInGraphicsView() on Wayland
Task-number: QTBUG-107186 Pick-to: 6.4 6.2 Change-Id: I1f67c0b7c70dec210989073660db6b03afb98fff Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
-rw-r--r--tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp b/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp
index 2f7fb92dc2..a4534ae243 100644
--- a/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp
+++ b/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp
@@ -1831,6 +1831,9 @@ void tst_QCompleter::QTBUG_51889_activatedSentTwice()
void tst_QCompleter::showPopupInGraphicsView()
{
+ if (QGuiApplication::platformName().startsWith(QLatin1String("wayland"), Qt::CaseInsensitive))
+ QSKIP("Wayland: Skip this test, see also QTBUG-107186");
+
QGraphicsView view;
QGraphicsScene scene;
view.setScene(&scene);