summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2022-10-12 15:22:26 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-10-15 08:18:28 +0000
commitbeb4d798163fb62edfcf7977cea66adfbf0caa32 (patch)
tree1d00ef0b334588231f419dd32a2f8451c4e8b7e1 /tests
parentd5f2fadef4e387b2cc4c4496abb83faede43549a (diff)
tests: skip tst_QCompleter::showPopupInGraphicsView() on Wayland
Task-number: QTBUG-107186 Change-Id: I1f67c0b7c70dec210989073660db6b03afb98fff Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io> (cherry picked from commit f990c256eb79810a5190ee096e9c1820f4a478b6) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests')
-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 92158190b8..86dc47ec11 100644
--- a/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp
+++ b/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp
@@ -1829,6 +1829,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);