[Libreoffice-commits] core.git: sc/qa

Noel Grandin noel at peralex.com
Tue Oct 14 00:35:41 PDT 2014


 sc/qa/unit/opencl-test.cxx |   10 ++++++++++
 1 file changed, 10 insertions(+)

New commits:
commit c60eac8db02fa6bd9097dfd387251bf85d9a7616
Author: Noel Grandin <noel at peralex.com>
Date:   Tue Oct 14 09:32:45 2014 +0200

    don't execute ScOpenCLTest::testFinacialIRRFormula on OSX
    
    it has intermittent failures which causes the tinderboxes
    to unnecessarily spam my inbox
    
    Change-Id: I689b9d8c5da169dc6572250afe686b79039fba34

diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx
index aab8fda..9b05518 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()
 {


More information about the Libreoffice-commits mailing list