diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-01-11 09:20:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-01-11 11:55:26 +0100 |
commit | 20a9b1ba01636b2b35b6cc2bc5c1c807055c5e8d (patch) | |
tree | 834353d6fdc5d5d9ab8b94609fe67dd6158b9b68 /emfio | |
parent | efc287877328d3193c23d3a1065b6f015d7d12ef (diff) |
Adapt test value intervals to my Linux --without-system-fontconfig build
Change-Id: Ie0867782b0925800cc094f43f8387fb9d1ff0c21
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128272
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'emfio')
-rw-r--r-- | emfio/qa/cppunit/wmf/wmfimporttest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emfio/qa/cppunit/wmf/wmfimporttest.cxx b/emfio/qa/cppunit/wmf/wmfimporttest.cxx index a967930ae5ab..db84998523fa 100644 --- a/emfio/qa/cppunit/wmf/wmfimporttest.cxx +++ b/emfio/qa/cppunit/wmf/wmfimporttest.cxx @@ -123,7 +123,7 @@ void WmfTest::testTdf88163NonPlaceableWmf() // Mac: With fix: 3230, without fix: ~ 8000 // Windows: With fix: 3303, without fix: ~ 8000 auto x = getXPath(pDoc, "/metafile/push[2]/font[1]", "height"); - CPPUNIT_ASSERT_GREATER(sal_Int32(3000), x.toInt32()); + CPPUNIT_ASSERT_GREATEREQUAL(sal_Int32(3000), x.toInt32()); CPPUNIT_ASSERT_LESS(sal_Int32(3500), x.toInt32()); // Fails without the fix: Expected: 7359, Actual: 7336 @@ -161,7 +161,7 @@ void WmfTest::testTdf88163PlaceableWmf() // The fix does not affect the font size // Linux: 300 - Mac: 309 - Windows: 316 auto x = getXPath(pDoc, "/metafile/push[2]/font[1]", "height"); - CPPUNIT_ASSERT_GREATER(sal_Int32(290), x.toInt32()); + CPPUNIT_ASSERT_GREATEREQUAL(sal_Int32(287), x.toInt32()); CPPUNIT_ASSERT_LESS(sal_Int32(320), x.toInt32()); // Fails without the fix: Expected: 1900, Actual: 19818 |