sw/CppunitTest_sw_writerfilter_dmapper.mk | 4 ++++ sw/CppunitTest_sw_writerfilter_filters_test.mk | 4 ++++ sw/CppunitTest_sw_writerfilter_misc.mk | 3 +++ 3 files changed, 11 insertions(+)
New commits: commit 0dfd9c8206dbafeafacec9320419c68f4fa446dd Author: Noel Grandin <[email protected]> AuthorDate: Tue Jan 6 10:09:54 2026 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Tue Jan 6 12:23:48 2026 +0100 apply gb_CppunitTest_set_non_application_font_use to writerfilter tests Change-Id: I343f542a07efa83ebad6e94e3db236f63319187e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196598 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Jenkins diff --git a/sw/CppunitTest_sw_writerfilter_dmapper.mk b/sw/CppunitTest_sw_writerfilter_dmapper.mk index 260c8d9b37f9..11d695766e42 100644 --- a/sw/CppunitTest_sw_writerfilter_dmapper.mk +++ b/sw/CppunitTest_sw_writerfilter_dmapper.mk @@ -76,4 +76,8 @@ $(eval $(call gb_CppunitTest_use_configuration,sw_writerfilter_dmapper)) # by a link relation $(call gb_CppunitTest_get_target,sw_writerfilter_dmapper) : $(call gb_Library_get_target,sw_writerfilter) +ifneq ($(filter MORE_FONTS,$(BUILD_TYPE)),) +$(eval $(call gb_CppunitTest_set_non_application_font_use,sw_writerfilter_misc,abort)) +endif + # vim: set noet sw=4 ts=4: diff --git a/sw/CppunitTest_sw_writerfilter_filters_test.mk b/sw/CppunitTest_sw_writerfilter_filters_test.mk index 2c1212d60768..5aba9544b72f 100644 --- a/sw/CppunitTest_sw_writerfilter_filters_test.mk +++ b/sw/CppunitTest_sw_writerfilter_filters_test.mk @@ -58,4 +58,8 @@ $(eval $(call gb_CppunitTest_use_configuration,sw_writerfilter_filters_test)) # by a link relation $(call gb_CppunitTest_get_target,sw_writerfilter_filters_test) : $(call gb_Library_get_target,sw_writerfilter) +ifneq ($(filter MORE_FONTS,$(BUILD_TYPE)),) +$(eval $(call gb_CppunitTest_set_non_application_font_use,sw_autocorrect,abort)) +endif + # vim: set noet sw=4 ts=4: diff --git a/sw/CppunitTest_sw_writerfilter_misc.mk b/sw/CppunitTest_sw_writerfilter_misc.mk index c1f36dd28996..59181e10ab88 100644 --- a/sw/CppunitTest_sw_writerfilter_misc.mk +++ b/sw/CppunitTest_sw_writerfilter_misc.mk @@ -35,5 +35,8 @@ $(eval $(call gb_CppunitTest_add_exception_objects,sw_writerfilter_misc, \ sw/qa/writerfilter/misc/misc \ )) +ifneq ($(filter MORE_FONTS,$(BUILD_TYPE)),) +$(eval $(call gb_CppunitTest_set_non_application_font_use,sw_writerfilter_misc,abort)) +endif # vim: set noet sw=4 ts=4:
