vcl/qa/cppunit/skia/skia.cxx | 4 ----
1 file changed, 4 deletions(-)
New commits:
commit c1c88bad3e99dd3740b7833d81350e8dd6e39649
Author: Luboš Luňák <[email protected]>
AuthorDate: Fri Nov 5 13:29:08 2021 +0100
Commit: Luboš Luňák <[email protected]>
CommitDate: Fri Nov 5 16:52:43 2021 +0100
Revert "disable SkiaTest::testMatrixQuality because of tb68"
This got handled properly by 12c6b1ef6a824b09778163ec83fc44bb .
This reverts commit 734f37aaf6027ef2d989b6440370dee46bac0df7.
Change-Id: I5debb99293ce5b70f112a61f8959a10046926294
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124748
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <[email protected]>
diff --git a/vcl/qa/cppunit/skia/skia.cxx b/vcl/qa/cppunit/skia/skia.cxx
index 549b7de7b16f..4ff70306b3fe 100644
--- a/vcl/qa/cppunit/skia/skia.cxx
+++ b/vcl/qa/cppunit/skia/skia.cxx
@@ -320,9 +320,6 @@ void SkiaTest::testBitmapCopyOnWrite()
void SkiaTest::testMatrixQuality()
{
-// This test fails on the tb68 tinderbox for a mysterious reason:
-// https://lists.freedesktop.org/archives/libreoffice/2021-March/086969.html
-#if !(defined(_WIN32) && !defined(_WIN64))
if (!SkiaHelper::isVCLSkiaEnabled())
return;
// Not changing the size (but possibly rotated/flipped) does not need high
quality transformations.
@@ -334,7 +331,6 @@ void SkiaTest::testMatrixQuality()
CPPUNIT_ASSERT(SkiaTests::matrixNeedsHighQuality(SkMatrix::Scale(0, -1)));
CPPUNIT_ASSERT(SkiaTests::matrixNeedsHighQuality(SkMatrix::Scale(2, 1)));
CPPUNIT_ASSERT(SkiaTests::matrixNeedsHighQuality(SkMatrix::RotateDeg(89)));
-#endif
}
void SkiaTest::testDelayedScale()