diff options
author | Tomáš Chvátal <tchvatal@suse.com> | 2016-05-12 11:07:13 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-05-13 09:19:20 +0000 |
commit | efec1f7024f11f68c3fca476416c78414266f259 (patch) | |
tree | 941bb84291f2714800f064a57fba46b5c3ce4b94 /sc | |
parent | a345c5912d9e292ddd885546a60353d1769fbc86 (diff) |
Fix unittest failure on aarch64
Change-Id: Ice8d67a7531ef718a9e45d3e5d30817822383749
Reviewed-on: https://gerrit.libreoffice.org/24924
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/ucalc_formula.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx index ffce49a34ed5..fa49e0d89053 100644 --- a/sc/qa/unit/ucalc_formula.cxx +++ b/sc/qa/unit/ucalc_formula.cxx @@ -6851,7 +6851,7 @@ void Test::testFuncMDETERM() // interim results or optimization not catching it, this test fails // when comparing to 0.0, so have a narrow error margin. See also // commit message of 8140309d636d4a870875f2dd75ed3dfff2c0fbaf -#if SAL_TYPES_SIZEOFPOINTER == 4 +#if SAL_TYPES_SIZEOFPOINTER == 4 || defined(__aarch64__) CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of MDETERM incorrect for singular integer matrix", 0.0, m_pDoc->GetValue(aPos), 1e-12); #else |