[Libreoffice-commits] core.git: vcl/qa

Thorsten Wagner (via logerrit) logerrit at kemper.freedesktop.org
Fri Mar 5 13:23:21 UTC 2021


 vcl/qa/cppunit/BackendTest.cxx |    7 +++++++
 1 file changed, 7 insertions(+)

New commits:
commit f8891b7f87957cc3f66805adf9b1e35a2189946b
Author:     Thorsten Wagner <thorsten.wagner.4 at gmail.com>
AuthorDate: Thu Mar 4 20:25:12 2021 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Fri Mar 5 14:22:37 2021 +0100

    tdf#138122 Detect window scaling for multi display configurations on macOS
    
    Supplemental change to commit 0c36f364b14aacd0eeb53087ae2fce54402dc741
    to disable additional unit tests unless bitmap scaling has been implemented
    
    Change-Id: Ic4861dabcb221976fe415b1d7110099ec66bb4ce
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111977
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/vcl/qa/cppunit/BackendTest.cxx b/vcl/qa/cppunit/BackendTest.cxx
index 734d255272c2..88ef28fb40e4 100644
--- a/vcl/qa/cppunit/BackendTest.cxx
+++ b/vcl/qa/cppunit/BackendTest.cxx
@@ -921,7 +921,11 @@ public:
     CPPUNIT_TEST(testDrawMask);
     CPPUNIT_TEST(testDrawBlend);
     CPPUNIT_TEST(testDrawXor);
+
+// TODO: Following unit test is not executed for macOS unless bitmap scaling is implemented
+#ifndef MACOSX
     CPPUNIT_TEST(testDrawTransformedBitmapExAlpha);
+#endif
 
     CPPUNIT_TEST(testClipRectangle);
     CPPUNIT_TEST(testClipPolygon);
@@ -946,8 +950,11 @@ public:
     CPPUNIT_TEST(testDrawBlendExtended);
     CPPUNIT_TEST(testDrawAlphaBitmapMirrored);
 
+// TODO: Following unit tests are not executed for macOS unless bitmap scaling is implemented
+#ifndef MACOSX
     CPPUNIT_TEST(testTdf124848);
     CPPUNIT_TEST(testTdf136171);
+#endif
 
     CPPUNIT_TEST_SUITE_END();
 };


More information about the Libreoffice-commits mailing list