diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-05-09 12:59:29 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-05-09 15:32:53 +0200 |
commit | 7b6dbbcb5a42bb51b3e84b54f9950f3f43e97c97 (patch) | |
tree | e171d71be2f00621c11bf347f0750ae93b411adf | |
parent | 10c2e1f4a2158f629892356f569de01e7fea20f7 (diff) |
CppunitTest_sc_opencl-2: re-enable test
Disable in 836abd393d126cfbba6b0bd1fdda5b03095516c9
"GPU Calc: temporarily disable Kombin unit test"
Change-Id: I311caae5450874c61a6bf5e40940513f614da965
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151572
Tested-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r-- | sc/qa/unit/opencl-test-2.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sc/qa/unit/opencl-test-2.cxx b/sc/qa/unit/opencl-test-2.cxx index e3f79293e1eb..a99808da19c4 100644 --- a/sc/qa/unit/opencl-test-2.cxx +++ b/sc/qa/unit/opencl-test-2.cxx @@ -68,7 +68,7 @@ public: void testStatisticalFormulaBinomDist(); void testStatisticalFormulaVarP(); void testMathFormulaCeil(); - // void testMathFormulaKombin(); + void testMathFormulaKombin(); void testStatisticalFormulaDevSq(); void testStatisticalFormulaStDev(); void testStatisticalFormulaSlope(); @@ -182,8 +182,7 @@ public: CPPUNIT_TEST(testStatisticalFormulaBinomDist); CPPUNIT_TEST(testStatisticalFormulaVarP); CPPUNIT_TEST(testMathFormulaCeil); - // This test fails MacOS 10.8. Disabled temporarily - // CPPUNIT_TEST(testMathFormulaKombin); + CPPUNIT_TEST(testMathFormulaKombin); CPPUNIT_TEST(testStatisticalFormulaDevSq); CPPUNIT_TEST(testStatisticalFormulaStDev); CPPUNIT_TEST(testStatisticalFormulaSlope); @@ -1177,7 +1176,6 @@ void ScOpenCLTest2::testMathFormulaProduct() } } -#if 0 //Disabled temporarily void ScOpenCLTest2::testMathFormulaKombin() { initTestEnv(u"ods/opencl/math/Kombin.ods"); @@ -1193,7 +1191,6 @@ void ScOpenCLTest2::testMathFormulaKombin() CPPUNIT_ASSERT_DOUBLES_EQUAL(fExcel, fLibre, fabs(0.0001*fExcel)); } } -#endif void ScOpenCLTest2:: testArrayFormulaSumX2MY2() { |