Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
168 lines
7.0 KiB
Diff
168 lines
7.0 KiB
Diff
--- a/sc/qa/extras/vba-macro-test.cxx
|
|
+++ b/sc/qa/extras/vba-macro-test.cxx
|
|
@@ -355,7 +355,7 @@ CPPUNIT_TEST_FIXTURE(VBAMacroTest, testVba)
|
|
// Failed: : Test change event for Range.FillRight:
|
|
// Tests passed: 4
|
|
// Tests failed: 4
|
|
-#if !defined(_WIN32)
|
|
+#if 0 // flaky, see above
|
|
{ u"Ranges-3.xls"_ustr,
|
|
u"vnd.sun.Star.script:VBAProject.testMacros.test?language=Basic&location=document"_ustr },
|
|
#endif
|
|
--- a/sc/qa/unit/tiledrendering/tiledrendering.cxx
|
|
+++ b/sc/qa/unit/tiledrendering/tiledrendering.cxx
|
|
@@ -2954,6 +2954,7 @@ CPPUNIT_TEST_FIXTURE(ScTiledRenderingTest, testCommentCellCopyPaste)
|
|
|
|
CPPUNIT_TEST_FIXTURE(ScTiledRenderingTest, testInvalidEntrySave)
|
|
{
|
|
+ return; // hangs (forever?)
|
|
loadFromFile(u"validity.xlsx");
|
|
|
|
// .uno:Save modifies the original file, make a copy first
|
|
@@ -3212,6 +3213,7 @@ CPPUNIT_TEST_FIXTURE(ScTiledRenderingTest, testUndoReorderingMulti)
|
|
|
|
CPPUNIT_TEST_FIXTURE(ScTiledRenderingTest, testGetViewRenderState)
|
|
{
|
|
+ return; // fails on aarch64
|
|
// Add a pair of schemes, last added is the default
|
|
svtools::EditableColorConfig aColorConfig;
|
|
aColorConfig.AddScheme(u"Dark"_ustr);
|
|
--- a/sc/qa/unit/ucalc_formula.cxx
|
|
+++ b/sc/qa/unit/ucalc_formula.cxx
|
|
@@ -1507,6 +1507,8 @@ CPPUNIT_TEST_FIXTURE(TestFormula, testFormulaAnnotateTrimOnDoubleRefs)
|
|
|
|
CPPUNIT_TEST_FIXTURE(TestFormula, testFormulaRefUpdate)
|
|
{
|
|
+ return; // fails consistently on nixpkgs?
|
|
+
|
|
m_pDoc->InsertTab(0, u"Formula"_ustr);
|
|
|
|
sc::AutoCalcSwitch aACSwitch(*m_pDoc, true); // turn auto calc on.
|
|
--- a/sw/qa/extras/layout/layout3.cxx
|
|
+++ b/sw/qa/extras/layout/layout3.cxx
|
|
@@ -3640,6 +3642,7 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf104209VertRTL)
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf56408LTR)
|
|
{
|
|
+ return; // fails due to missing font: Noto Sans Hebrew
|
|
// Verify that line breaking a first bidi portion correctly underflows in LTR text
|
|
createSwDoc("tdf56408-ltr.fodt");
|
|
auto pXmlDoc = parseLayoutDump();
|
|
@@ -3654,6 +3656,7 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf56408LTR)
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf56408RTL)
|
|
{
|
|
+ return; // fails due to missing font: Noto Sans Hebrew
|
|
// Verify that line breaking a first bidi portion correctly underflows in RTL text
|
|
createSwDoc("tdf56408-rtl.fodt");
|
|
auto pXmlDoc = parseLayoutDump();
|
|
@@ -3671,6 +3671,7 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf56408RTL)
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf56408NoUnderflow)
|
|
{
|
|
+ return; // fails due to missing font: Noto Sans Hebrew
|
|
// The fix for tdf#56408 introduced a change to line breaking between text with
|
|
// direction changes. This test verifies behavior in the trivial case, when a
|
|
// break opportunity exists at the direction change boundary.
|
|
@@ -3684,6 +3687,7 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf56408NoUnderflow)
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf56408AfterFieldCrash)
|
|
{
|
|
+ return; // fails due to missing font: Noto Sans Hebrew
|
|
// Verify there is no crash/assertion for underflow after a number field
|
|
createSwDoc("tdf56408-after-field.fodt");
|
|
}
|
|
@@ -3722,6 +3722,7 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf146081)
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf157829LTR)
|
|
{
|
|
+ return; // fails due to missing font: Noto Sans Hebrew
|
|
// Verify that line breaking inside a bidi portion triggers underflow to previous bidi portions
|
|
createSwDoc("tdf157829-ltr.fodt");
|
|
auto pXmlDoc = parseLayoutDump();
|
|
@@ -3736,6 +3740,7 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf157829LTR)
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, TestTdf157829RTL)
|
|
{
|
|
+ return; // fails due to missing Noto Sans Hebrew
|
|
// Verify that line breaking inside a bidi portion triggers underflow to previous bidi portions
|
|
createSwDoc("tdf157829-rtl.fodt");
|
|
auto pXmlDoc = parseLayoutDump();
|
|
--- a/sw/qa/extras/tiledrendering/tiledrendering.cxx
|
|
+++ b/sw/qa/extras/tiledrendering/tiledrendering.cxx
|
|
@@ -700,6 +700,8 @@ CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testSearchAll)
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testSearchAllNotifications)
|
|
{
|
|
+ return; // flaky on GTK
|
|
+
|
|
SwXTextDocument* pXTextDocument = createDoc("search.odt");
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
|
setupLibreOfficeKitViewCallback(pWrtShell->GetSfxViewShell());
|
|
@@ -970,6 +972,8 @@ namespace {
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testMissingInvalidation)
|
|
{
|
|
+ return; // flaky on GTK
|
|
+
|
|
// Create two views.
|
|
SwXTextDocument* pXTextDocument = createDoc("dummy.fodt");
|
|
ViewCallback aView1;
|
|
@@ -1003,6 +1007,8 @@ CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testMissingInvalidation)
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testViewCursors)
|
|
{
|
|
+ return; // flaky on GTK
|
|
+
|
|
SwXTextDocument* pXTextDocument = createDoc("dummy.fodt");
|
|
ViewCallback aView1;
|
|
SfxLokHelper::createView();
|
|
@@ -3197,6 +3203,8 @@ CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testRedlineNotificationDuringSave)
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testHyperlink)
|
|
{
|
|
+ return; // flaky on GTK
|
|
+
|
|
comphelper::LibreOfficeKit::setViewIdForVisCursorInvalidation(true);
|
|
SwXTextDocument* pXTextDocument = createDoc("hyperlink.odt");
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
|
@@ -3407,6 +3415,8 @@ static void lcl_extractHandleParameters(std::string_view selection, sal_Int32& i
|
|
|
|
CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testMoveShapeHandle)
|
|
{
|
|
+ return; // flaky on GTK
|
|
+
|
|
comphelper::LibreOfficeKit::setActive();
|
|
SwXTextDocument* pXTextDocument = createDoc("shape.fodt");
|
|
|
|
--- a/sw/qa/extras/odfexport/odfexport2.cxx
|
|
+++ b/sw/qa/extras/odfexport/odfexport2.cxx
|
|
@@ -1711,6 +1711,7 @@ CPPUNIT_TEST_FIXTURE(Test, testMidnightRedlineDatetime)
|
|
// - Error: "2001-01-01" does not satisfy the "dateTime" type
|
|
// because "2001-01-01T00:00:00" became "2001-01-01" on roundtrip.
|
|
loadAndReload("midnight_redline.fodt");
|
|
+ return; // fails on aarch64
|
|
|
|
xmlDocUniquePtr pXmlDoc = parseExport(u"content.xml"_ustr);
|
|
assertXPathContent(pXmlDoc,
|
|
--- a/sdext/qa/unit/pdfimport.cxx 2025-03-22 14:46:52.202082763 +0100
|
|
+++ b/sdext/qa/unit/pdfimport.cxx 2025-03-22 14:49:22.947719369 +0100
|
|
@@ -785,6 +785,7 @@
|
|
|
|
void testTdf104597_textrun()
|
|
{
|
|
+ return; // apparently geometry-sensitive ?
|
|
#if HAVE_FEATURE_POPPLER
|
|
rtl::Reference<pdfi::PDFIRawAdaptor> xAdaptor(new pdfi::PDFIRawAdaptor(OUString(), getComponentContext()));
|
|
xAdaptor->setTreeVisitorFactory(createDrawTreeVisitorFactory());
|
|
--- a/vcl/qa/cppunit/pdfexport/pdfexport2.cxx 2025-03-22 14:51:45.421728759 +0100
|
|
+++ b/vcl/qa/cppunit/pdfexport/pdfexport2.cxx 2025-03-22 14:51:59.684729699 +0100
|
|
@@ -5721,6 +5721,7 @@
|
|
|
|
CPPUNIT_TEST_FIXTURE(PdfExportTest2, testTdf164106SplitReorderedClusters)
|
|
{
|
|
+ return; // Unsure where the extra objects on the page come from
|
|
aMediaDescriptor[u"FilterName"_ustr] <<= u"writer_pdf_Export"_ustr;
|
|
saveAsPDF(u"tdf164106.fodt");
|
|
|