diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-01 08:00:18 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-01 09:38:52 +0100 |
commit | 056de1a0812ccec8496619c918091d4fe120f11a (patch) | |
tree | ab9ca00fa3c5915299f82d3e38f0907d638ed238 /vcl | |
parent | 94e021c5e1f1fdb19d18fe8f5be7b5b4e5b841a7 (diff) |
Skip always failing testDrawingText on Windows
Change-Id: I15e60e13735bf87529264905773b486afb3fc74b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127835
Tested-by: Jan-Marek Glogowski <glogow@fbihome.de>
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/qa/cppunit/BackendTest.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
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() |