summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2022-08-18 03:08:37 +0300
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-08-18 14:23:33 +0000
commit52acf391ec1dbfae659fbd67df61062e86dfffae (patch)
tree8251b01f6b50b00890025d702f08606bad362569 /tests
parentc28859a86136a9d817414cdc112d145da7269c9e (diff)
Android: skip tst_qopengl::fboRenderingRGB30()
This fails on Android 12 in CI. Task-number: QTBUG-105738 Change-Id: I94fcefae3d88087cd96f4043b015f9469ed629a9 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit 0fb59d68f79328215a5c3b3602c5baefdc0d1178) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/gui/qopengl/tst_qopengl.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/gui/qopengl/tst_qopengl.cpp b/tests/auto/gui/qopengl/tst_qopengl.cpp
index 4e81af6cf3..24fd7b04a6 100644
--- a/tests/auto/gui/qopengl/tst_qopengl.cpp
+++ b/tests/auto/gui/qopengl/tst_qopengl.cpp
@@ -618,6 +618,10 @@ static bool supportsInternalFboFormat(QOpenGLContext *ctx, int glFormat)
void tst_QOpenGL::fboRenderingRGB30()
{
+#ifdef Q_OS_ANDROID
+ if (QNativeInterface::QAndroidApplication::sdkVersion() >= 31)
+ QSKIP("Fails on Android 12 (QTBUG-105738)");
+#endif
#if defined(Q_OS_LINUX) && defined(Q_CC_GNU) && !defined(__x86_64__)
QSKIP("QTBUG-22617");
#endif