diff --git a/tests/auto/gui/rhi/qrhi/BLACKLIST b/tests/auto/gui/rhi/qrhi/BLACKLIST index f664eaf971f..4a325f7436f 100644 --- a/tests/auto/gui/rhi/qrhi/BLACKLIST +++ b/tests/auto/gui/rhi/qrhi/BLACKLIST @@ -3,7 +3,5 @@ android # Skip 3D textures on Android emulator: Software GL implementation doesn't work and GLES 3.0 # won't be available. -[renderToTextureSampleWithSeparateTextureAndSampler] -android [tessellation vulkan] android diff --git a/tests/auto/gui/rhi/qrhi/tst_qrhi.cpp b/tests/auto/gui/rhi/qrhi/tst_qrhi.cpp index 5c7bce5b61e..c9d18a2f42a 100644 --- a/tests/auto/gui/rhi/qrhi/tst_qrhi.cpp +++ b/tests/auto/gui/rhi/qrhi/tst_qrhi.cpp @@ -2413,6 +2413,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");