aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Buhr <andreas@andreasbuhr.de>2022-04-06 14:59:13 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-04-07 01:19:34 +0000
commit52a6089289704cc7c7faf57ddf4c651a6338ef43 (patch)
treec47479eb2ba787d93338583c59417af8766ff53f
parent3a46dde44ead5c3a40476d2aa91bd64e843a2e56 (diff)
Skip tst_qquickrectangle::color() for now on Android
tst_qquickrectangle::color() does not work on Android currently due to a bug. Task-number: QTBUG-102345 Change-Id: I5d269fdc87c2677909c7a5d78ac97ed284c1e07b Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit c8dd3c219fbe286a30d0e13cebac00189eac5849) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp b/tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp
index 54935e5fda..cb2f26e49f 100644
--- a/tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp
+++ b/tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp
@@ -63,6 +63,10 @@ tst_qquickrectangle::tst_qquickrectangle()
void tst_qquickrectangle::color()
{
+#ifdef Q_OS_ANDROID
+ QSKIP("Test does not work on Android because of QTBUG-102345");
+#endif
+
if (QGuiApplication::primaryScreen()->depth() < 24)
QSKIP("This test does not work at display depths < 24");