diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-11-14 15:35:18 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-11-14 17:28:33 +0100 |
commit | 18dfcbb11a05b7e702dc2161df9db8386a7ca34b (patch) | |
tree | ad73b6f906bbbfe3cbc85e80dbec61ec1593dba4 /sw/Module_sw.mk | |
parent | bd05cc9a5093bbf5d2e136a6589be612df81d27e (diff) |
CppunitTest_sw_tiledrendering: replace various ifdefs with a single condition
LOK is Linux-only at the moment, don't bother with disabling each and
every unit test on Mac/Windows for now.
Change-Id: I2ff1ed47251c16ec6a8d43138789480d95ea720e
Diffstat (limited to 'sw/Module_sw.mk')
-rw-r--r-- | sw/Module_sw.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk index 7dfd54128a58..39b466fc616f 100644 --- a/sw/Module_sw.mk +++ b/sw/Module_sw.mk @@ -69,11 +69,16 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\ CppunitTest_sw_odfexport \ CppunitTest_sw_odfimport \ CppunitTest_sw_uiwriter \ - CppunitTest_sw_tiledrendering \ CppunitTest_sw_mailmerge \ CppunitTest_sw_globalfilter \ )) +ifeq ($(OS),LINUX) +$(eval $(call gb_Module_add_slowcheck_targets,sw,\ + CppunitTest_sw_tiledrendering \ +)) +endif + ifneq ($(DISABLE_CVE_TESTS),TRUE) $(eval $(call gb_Module_add_slowcheck_targets,sw,\ CppunitTest_sw_filters_test \ |