[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.3' - sc/qa

Noel Grandin noel at peralex.com
Sun May 10 06:29:34 PDT 2015


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

New commits:
commit cf9e5d1cb9adaf8861d09a6c610d2ddf9fd9520d
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
    
    (cherry picked from commit c60eac8db02fa6bd9097dfd387251bf85d9a7616)
    
    Conflicts:
    	sc/qa/unit/opencl-test.cxx
    
    Change-Id: I689b9d8c5da169dc6572250afe686b79039fba34

diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx
index 9ac41a2..2806747 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);
@@ -1248,7 +1254,8 @@ void ScOpenclTest::testFinacialSYDFormula()
     xDocShRes->DoClose();
 }
 
-
+// this test has intermittent failures on OSX
+#if !defined MACOSX
 void ScOpenclTest::testFinacialIRRFormula()
 {
     if (!detectOpenCLDevice())
@@ -1271,6 +1278,7 @@ void ScOpenclTest::testFinacialIRRFormula()
     xDocSh->DoClose();
     xDocShRes->DoClose();
 }
+#endif
 //[AMLOEXT-49]
 void ScOpenclTest::testStatisticalFormulaGammaLn()
 {


More information about the Libreoffice-commits mailing list