diff --git a/tests/auto/gui/rhi/qrhi/BLACKLIST b/tests/auto/gui/rhi/qrhi/BLACKLIST index b3284f89795..018c0fa968d 100644 --- a/tests/auto/gui/rhi/qrhi/BLACKLIST +++ b/tests/auto/gui/rhi/qrhi/BLACKLIST @@ -11,8 +11,6 @@ android [renderToTextureTextureArray] android # Ditto -[renderToTextureSampleWithSeparateTextureAndSampler] -android [renderToFloatTexture] android [renderToRgb10Texture] diff --git a/tests/auto/gui/rhi/qrhi/tst_qrhi.cpp b/tests/auto/gui/rhi/qrhi/tst_qrhi.cpp index 88b561c6428..bd9618c369a 100644 --- a/tests/auto/gui/rhi/qrhi/tst_qrhi.cpp +++ b/tests/auto/gui/rhi/qrhi/tst_qrhi.cpp @@ -2324,6 +2324,12 @@ void tst_QRhi::renderToTextureSampleWithSeparateTextureAndSampler() QFETCH(QRhi::Implementation, impl); QFETCH(QRhiInitParams *, initParams); +#ifdef Q_OS_ANDROID + if (impl == QRhi::Vulkan) { + QSKIP("This function fails with Vulkan on Android, see QTQAINFRA-6926 for more info."); + } +#endif + QScopedPointer rhi(QRhi::create(impl, initParams, QRhi::Flags(), nullptr)); if (!rhi) QSKIP("QRhi could not be created, skipping testing rendering");