diff options
-rw-r--r-- | sc/qa/unit/opencl-test.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx index aab8fda2ffa1..9b05518d5c40 100644 --- a/sc/qa/unit/opencl-test.cxx +++ b/sc/qa/unit/opencl-test.cxx @@ -76,7 +76,10 @@ public: void testStatisticalFormulaFisherInv(); void testStatisticalFormulaGamma(); void testFinacialFvscheduleFormula(); +// this test has intermittent failures on OSX +#if !defined MACOSX void testFinacialIRRFormula(); +#endif void testFinacialMIRRFormula(); void testFinacialRateFormula(); void testFinancialAccrintmFormula(); @@ -301,7 +304,10 @@ public: CPPUNIT_TEST(testStatisticalFormulaFisherInv); CPPUNIT_TEST(testStatisticalFormulaGamma); CPPUNIT_TEST(testFinacialFvscheduleFormula); +// this test has intermittent failures on OSX +#if !defined MACOSX CPPUNIT_TEST(testFinacialIRRFormula); +#endif CPPUNIT_TEST(testFinacialMIRRFormula); CPPUNIT_TEST(testFinacialRateFormula); CPPUNIT_TEST(testCompilerHorizontal); @@ -1209,6 +1215,8 @@ void ScOpenCLTest::testFinacialSYDFormula() xDocShRes->DoClose(); } +// this test has intermittent failures on OSX +#if !defined MACOSX void ScOpenCLTest::testFinacialIRRFormula() { if (!detectOpenCLDevice()) @@ -1228,6 +1236,8 @@ void ScOpenCLTest::testFinacialIRRFormula() xDocSh->DoClose(); xDocShRes->DoClose(); } +#endif + //[AMLOEXT-49] void ScOpenCLTest::testStatisticalFormulaGammaLn() { |