diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-01-14 16:06:24 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-01-14 16:07:08 -0500 |
commit | 230072a6be455c45ec37229caa97563e08f7d7b4 (patch) | |
tree | 8565a1bb16f09681e3a6747c4bbf4b0ffdd74cfa /sc | |
parent | 1712337d4dbdca7453a8ff701d429637edb9934b (diff) |
Figured out why testFuncMATCH was failing. Fixed it, all green.
Change-Id: Id45f4c853bf689afa8a46edc02e1e5f8c43894bc
Diffstat (limited to 'sc')
-rw-r--r-- | sc/CppunitTest_sc_ucalc.mk | 2 | ||||
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sc/CppunitTest_sc_ucalc.mk b/sc/CppunitTest_sc_ucalc.mk index 3151f14ed5de..28bf1bc4c310 100644 --- a/sc/CppunitTest_sc_ucalc.mk +++ b/sc/CppunitTest_sc_ucalc.mk @@ -95,8 +95,10 @@ $(eval $(call gb_CppunitTest_use_ure,sc_ucalc)) $(eval $(call gb_CppunitTest_use_components,sc_ucalc,\ configmgr/source/configmgr \ + fileaccess/source/fileacc \ framework/util/fwk \ i18npool/util/i18npool \ + sax/source/expatwrap/expwrap \ sfx2/util/sfx \ ucb/source/core/ucb1 \ ucb/source/ucp/file/ucpfile1 \ diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 6e52d6e175a3..2b66195a1f52 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -1145,7 +1145,7 @@ void Test::testCellFunctions() testFuncCOUNTIF(m_pDoc); testFuncIFERROR(m_pDoc); testFuncVLOOKUP(m_pDoc); -// testFuncMATCH(m_pDoc); // TODO: Fix this and re-enable it. + testFuncMATCH(m_pDoc); testFuncCELL(m_pDoc); testFuncDATEDIF(m_pDoc); testFuncINDIRECT(m_pDoc); |