From 0fb59d68f79328215a5c3b3602c5baefdc0d1178 Mon Sep 17 00:00:00 2001 From: Assam Boudjelthia Date: Thu, 18 Aug 2022 03:08:37 +0300 Subject: [PATCH] Android: skip tst_qopengl::fboRenderingRGB30() This fails on Android 12 in CI. Task-number: QTBUG-105738 Pick-to: 6.4 6.3 6.2 Change-Id: I94fcefae3d88087cd96f4043b015f9469ed629a9 Reviewed-by: Ivan Solovev --- tests/auto/gui/qopengl/tst_qopengl.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/auto/gui/qopengl/tst_qopengl.cpp b/tests/auto/gui/qopengl/tst_qopengl.cpp index ace4d3e9ef7..0d74a185b80 100644 --- a/tests/auto/gui/qopengl/tst_qopengl.cpp +++ b/tests/auto/gui/qopengl/tst_qopengl.cpp @@ -620,6 +620,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