sd/qa/unit/export-tests.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
New commits: commit 4bc4fc7681af8bc636f076e9047e41b6c5aebb61 Author: Noel Grandin <[email protected]> AuthorDate: Tue Dec 9 13:39:28 2025 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Wed Dec 10 08:36:02 2025 +0100 add comment to skipValidation() call for anyone else who wants to fix it. Change-Id: I3481e8d6d24f640a3a294bf04f311010d018bade Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195079 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Jenkins diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx index 15c867227d8f..0aca8feb5d77 100644 --- a/sd/qa/unit/export-tests.cxx +++ b/sd/qa/unit/export-tests.cxx @@ -1984,8 +1984,11 @@ CPPUNIT_TEST_FIXTURE(SdExportTest, testTdf152606) CPPUNIT_TEST_FIXTURE(SdExportTest, testTdf154754) { - //Without the fix in place, it would crash at export time + // odfvalidator warns because we are missing a xlink:href attribute and it therefore concludes that + // we must have a <office:binary-data> sub-element. Most likely the input file is invalid. skipValidation(); + + //Without the fix in place, it would crash at export time createSdImpressDoc("odp/tdf154754.odp"); saveAndReload(TestFilter::ODP); }
