diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-14 09:32:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-14 09:34:49 +0200 |
commit | c60eac8db02fa6bd9097dfd387251bf85d9a7616 (patch) | |
tree | 62c8dcf384f48e09c0723ac180daf32088b65872 /sc/qa | |
parent | 572f164173404074716da51bf143a13332a28792 (diff) |
don't execute ScOpenCLTest::testFinacialIRRFormula on OSX
it has intermittent failures which causes the tinderboxes
to unnecessarily spam my inbox
Change-Id: I689b9d8c5da169dc6572250afe686b79039fba34
Diffstat (limited to 'sc/qa')
-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() { |