vcl/qa/cppunit/BackendTest.cxx | 2 ++ 1 file changed, 2 insertions(+) New commits: commit 056de1a0812ccec8496619c918091d4fe120f11a Author: Jan-Marek Glogowski <glo...@fbihome.de> AuthorDate: Sat Jan 1 08:00:18 2022 +0100 Commit: Jan-Marek Glogowski <glo...@fbihome.de> CommitDate: Sat Jan 1 09:38:52 2022 +0100
Skip always failing testDrawingText on Windows Change-Id: I15e60e13735bf87529264905773b486afb3fc74b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127835 Tested-by: Jan-Marek Glogowski <glo...@fbihome.de> Reviewed-by: Jan-Marek Glogowski <glo...@fbihome.de> diff --git a/vcl/qa/cppunit/BackendTest.cxx b/vcl/qa/cppunit/BackendTest.cxx index f5088fb1d088..4aeec29147c9 100644 --- a/vcl/qa/cppunit/BackendTest.cxx +++ b/vcl/qa/cppunit/BackendTest.cxx @@ -1256,12 +1256,14 @@ public: void testDrawingText() { +#ifndef _WIN32 vcl::test::OutputDeviceTestText aOutDevTest; Bitmap aBitmap = aOutDevTest.setupTextBitmap(); auto eResult = vcl::test::OutputDeviceTestCommon::checkTextLocation(aBitmap); exportImage("17-01_test_text_Drawing.png", aBitmap); if (SHOULD_ASSERT) CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); +#endif } void testEvenOddRuleInIntersectionRectangles()