summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2016-08-03 21:50:20 +0200
committerEike Rathke <erack@redhat.com>2016-08-03 21:52:41 +0200
commit1b6caaeb7a323e91b6f6e2f3612a3bdc0a09fb45 (patch)
tree3c886311ad82cd68413c1f96b1e9f59d30d9b5e4
parent3efcfc63eec7a75545e4f01fd15448744ad651fa (diff)
disable unit test for tdf#100637 until fixed again
Change-Id: I5f5b442534585bdb69878d8790fb887dd65f0ccd
-rw-r--r--sc/qa/unit/ucalc_formula.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx
index b2bfb37638cc..f5f65bf3d97d 100644
--- a/sc/qa/unit/ucalc_formula.cxx
+++ b/sc/qa/unit/ucalc_formula.cxx
@@ -3926,6 +3926,9 @@ void Test::testFuncIF()
m_pDoc->SetValue(ScAddress(1,0,0), 3.0);
CPPUNIT_ASSERT_EQUAL(OUString("not two"), m_pDoc->GetString(ScAddress(0,0,0)));
+/* FIXME: temporarily disabled because e54cd3fbf40300416ef337981bd356b88ad44a41
+ * reverted; reactivate when fixed again. */
+#if 0
// Test nested IF in array/matrix.
ScMarkData aMark;
aMark.SelectOneTable(0);
@@ -3933,6 +3936,7 @@ void Test::testFuncIF()
// Results must be 23 and 42.
CPPUNIT_ASSERT_EQUAL(23.0, m_pDoc->GetValue(ScAddress(0,2,0)));
CPPUNIT_ASSERT_EQUAL(42.0, m_pDoc->GetValue(ScAddress(1,2,0)));
+#endif
m_pDoc->DeleteTab(0);
}