summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Wagner <thorsten.wagner.4@gmail.com>2021-03-04 20:25:12 +0100
committerStephan Bergmann <sbergman@redhat.com>2021-03-05 14:22:37 +0100
commitf8891b7f87957cc3f66805adf9b1e35a2189946b (patch)
treed847420393644e7d549acf880e8dbcd46b627d6a
parent98dc227bc7449d65950ee3eaf32254cc1dba52a6 (diff)
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@redhat.com>
-rw-r--r--vcl/qa/cppunit/BackendTest.cxx7
1 files changed, 7 insertions, 0 deletions
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();
};