summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-12-31 16:54:35 +0200
committerTor Lillqvist <tml@collabora.com>2014-12-31 16:54:35 +0200
commit219f2dc83f40afb7470bffc307371925e8fae018 (patch)
tree4443f3ad36def5efbcf6c0b3948c0559edae7540
parent0f9ce69b327ee14f028c26e6af275779b8047def (diff)
Ifdef out testSharedFormulaXLS() for now, fails for me with OpenCL on CPU
IRC exchange: <tml> reverting 16bfddc makes the CppunitTest_sc_subsequent_filters_test not crash for me (Linux, with the AMDAPPSDK-2.9-1 OpenCL implementation, but no AND hardware, just an (Intel) CPU), but then it instead fails the ScFiltersTest::testSharedFormulaXLS <tml> the problem (in the non-reverted case) is that for some reason the pDVR->GetArrayLength() on line 131 returns a ridiculously large value in sc/source/core/opencl/formulagroupcl.cxx <tml> that seems to cause the alllocated buffer to actually be of zero size, according to valgrind (even if no OpenCL call returns failure...) <moggi> let me have aquick look <moggi> just comment out that line for now and I'll have a look at it during the weekend Change-Id: I5f9499ba1576cfa6d0945ecb19260a4b89c83e72
-rw-r--r--sc/qa/unit/subsequent_filters-test.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx
index bafe9921f883..87978d54391e 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -175,7 +175,9 @@ public:
void testSharedFormulaWrappedRefsXLS();
void testSharedFormulaBIFF5();
void testSharedFormulaXLSB();
+#if 0
void testSharedFormulaXLS();
+#endif
void testExternalRefCacheXLSX();
void testExternalRefCacheODS();
void testHybridSharedStringODS();
@@ -260,7 +262,9 @@ public:
CPPUNIT_TEST(testSharedFormulaWrappedRefsXLS);
CPPUNIT_TEST(testSharedFormulaBIFF5);
CPPUNIT_TEST(testSharedFormulaXLSB);
+#if 0
CPPUNIT_TEST(testSharedFormulaXLS);
+#endif
CPPUNIT_TEST(testExternalRefCacheXLSX);
CPPUNIT_TEST(testExternalRefCacheODS);
CPPUNIT_TEST(testHybridSharedStringODS);
@@ -2604,6 +2608,8 @@ void ScFiltersTest::testSharedFormulaXLSB()
xDocSh->DoClose();
}
+#if 0
+
void ScFiltersTest::testSharedFormulaXLS()
{
{
@@ -2660,6 +2666,8 @@ void ScFiltersTest::testSharedFormulaXLS()
}
}
+#endif
+
void ScFiltersTest::testExternalRefCacheXLSX()
{
ScDocShellRef xDocSh = loadDoc("external-refs.", XLSX);