sc/qa/extras/vba-macro-test.cxx | 4 ++++ sd/qa/unit/export-tests-ooxml2.cxx | 4 ++++ 2 files changed, 8 insertions(+)
New commits: commit 645a7ae67743dc9c35ee91714beefe60d0165bfe Author: Noel Grandin <noelgran...@collabora.co.uk> AuthorDate: Tue Mar 26 09:25:38 2024 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Tue Mar 26 13:51:42 2024 +0100 skip more tests on hi-dpi windows Change-Id: Ic8a88e112f413a9ec0a77e3be5d8a586312cfe0e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165301 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/sc/qa/extras/vba-macro-test.cxx b/sc/qa/extras/vba-macro-test.cxx index 7cfc8fde1f35..cb20a1c0eb41 100644 --- a/sc/qa/extras/vba-macro-test.cxx +++ b/sc/qa/extras/vba-macro-test.cxx @@ -323,6 +323,10 @@ CPPUNIT_TEST_FIXTURE(VBAMacroTest, testMacroKeyBinding) CPPUNIT_TEST_FIXTURE(VBAMacroTest, testVba) { + // FIXME: the DPI check should be removed when either (1) the test is fixed to work with + // non-default DPI; or (2) unit tests on Windows are made to use svp VCL plugin. + if (!IsDefaultDPI()) + return; TestMacroInfo testInfo[] = { { OUString("TestAddress.xls"), OUString( diff --git a/sd/qa/unit/export-tests-ooxml2.cxx b/sd/qa/unit/export-tests-ooxml2.cxx index ee8d9998fe83..ddd272752859 100644 --- a/sd/qa/unit/export-tests-ooxml2.cxx +++ b/sd/qa/unit/export-tests-ooxml2.cxx @@ -80,6 +80,10 @@ public: CPPUNIT_TEST_FIXTURE(SdOOXMLExportTest2, testRepeatBitmapMode) { + // FIXME: the DPI check should be removed when either (1) the test is fixed to work with + // non-default DPI; or (2) unit tests on Windows are made to use svp VCL plugin. + if (!IsDefaultDPI()) + return; createSdImpressDoc("odp/repeatBitmapMode.odp"); save("Impress Office Open XML");