summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2021-11-05 13:29:08 +0100
committerLuboš Luňák <l.lunak@collabora.com>2021-11-05 16:52:43 +0100
commitc1c88bad3e99dd3740b7833d81350e8dd6e39649 (patch)
tree5d72928bfb81cf87733ce3cbbd25ad92a8db85d2
parent71b270fc3fb9c5f5f08cc340e83a3077cae427fd (diff)
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 <l.lunak@collabora.com>
-rw-r--r--vcl/qa/cppunit/skia/skia.cxx4
1 files changed, 0 insertions, 4 deletions
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()