diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-19 02:15:25 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-19 02:36:46 +0100 |
commit | 7e18e657c1ae33c35c8046676b1da195b0d3f493 (patch) | |
tree | 3a5cb3798967063f41c9198dc2bbff37ee00e678 /sc | |
parent | bf033461c5cb0053253f410da7f17dd2e12771c3 (diff) |
let us keep the gnumeric value handling in xmloff
Change-Id: I51c7ca53ec8b023dc06b43ec9cb1052d135d14d5
Diffstat (limited to 'sc')
-rw-r--r-- | sc/Module_sc.mk | 2 | ||||
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk index 4a4fc4192b85..6f36f6900da4 100644 --- a/sc/Module_sc.mk +++ b/sc/Module_sc.mk @@ -44,8 +44,6 @@ endif $(eval $(call gb_Module_add_check_targets,sc,\ CppunitTest_sc_ucalc \ - CppunitTest_sc_filters_test \ - CppunitTest_sc_rangelst_test \ )) $(eval $(call gb_Module_add_slowcheck_targets,sc, \ diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index ec9465228ee5..6f58ffe4a3a0 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -607,7 +607,6 @@ void testFuncN(ScDocument* pDoc) void testFuncCOUNTIF(ScDocument* pDoc) { // COUNTIF (test case adopted from OOo i#36381) - // Empty A1:A39 first. clearRange(pDoc, ScRange(0, 0, 0, 0, 40, 0)); @@ -1212,6 +1211,7 @@ void Test::testCellFunctions() void Test::testCopyToDocument() { CPPUNIT_ASSERT_MESSAGE ("failed to insert sheet", m_pDoc->InsertTab (0, "src")); + *((int*)42)=42; m_pDoc->SetString(0, 0, 0, "Header"); m_pDoc->SetString(0, 1, 0, "1"); |