summaryrefslogtreecommitdiffstats
path: root/sc/qa/unit/ucalc_formula.cxx
diff options
context:
space:
mode:
authorTomáš Chvátal <tchvatal@suse.com>2016-05-12 11:07:13 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-05-13 09:19:20 +0000
commitefec1f7024f11f68c3fca476416c78414266f259 (patch)
tree941bb84291f2714800f064a57fba46b5c3ce4b94 /sc/qa/unit/ucalc_formula.cxx
parentslideshow: replace boost::mem_fn with std::mem_fn (diff)
downloadcore-efec1f7024f11f68c3fca476416c78414266f259.tar.gz
core-efec1f7024f11f68c3fca476416c78414266f259.zip
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/qa/unit/ucalc_formula.cxx')
-rw-r--r--sc/qa/unit/ucalc_formula.cxx2
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