vcl/qa/cppunit/BackendTest.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 201682ddbfe0441a89646edc93e810cb26ae940b
Author: Caolán McNamara <[email protected]>
AuthorDate: Thu Dec 11 09:05:00 2025 +0000
Commit: Miklos Vajna <[email protected]>
CommitDate: Fri Dec 12 17:05:26 2025 +0100
disable testDrawMask24bpp for --enable-cairo-rgba
Change-Id: I84755909a705a23786d1f55948ab1c90c3543395
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195433
Tested-by: Jenkins CollaboraOffice <[email protected]>
Reviewed-by: Miklos Vajna <[email protected]>
diff --git a/vcl/qa/cppunit/BackendTest.cxx b/vcl/qa/cppunit/BackendTest.cxx
index 4c2ae7cfcfd7..7636e0d38517 100644
--- a/vcl/qa/cppunit/BackendTest.cxx
+++ b/vcl/qa/cppunit/BackendTest.cxx
@@ -513,6 +513,7 @@ public:
void testDrawMask24bpp()
{
+#if !ENABLE_CAIRO_RGBA
if (getDefaultDeviceBitCount() < 24)
return;
vcl::test::OutputDeviceTestBitmap aOutDevTest;
@@ -521,6 +522,7 @@ public:
exportImage(u"08-05_mask_test_24bpp.png"_ustr, aBitmap);
if (SHOULD_ASSERT)
CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed);
+#endif
}
void testDrawBlend24bpp()