diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-15 22:34:48 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-15 23:07:14 +0200 |
commit | 01550a7450f099c4016af53fef53c286040b1575 (patch) | |
tree | b79db5802356b99c62859c17425b87a345c18bf7 /sw | |
parent | 09b853e38b7a35d614caebd97116ca8a106148bd (diff) |
sw: disable CheckBookmarks on WNT
Change-Id: Ia52cbea28c832706cbfa74c2b1d9bca43df006d9
Diffstat (limited to 'sw')
-rw-r--r-- | sw/JunitTest_sw_complex.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sw/JunitTest_sw_complex.mk b/sw/JunitTest_sw_complex.mk index fbfb740c02b9..c31b0278d585 100644 --- a/sw/JunitTest_sw_complex.mk +++ b/sw/JunitTest_sw_complex.mk @@ -58,7 +58,6 @@ $(eval $(call gb_JunitTest_use_jars,sw_complex,\ $(eval $(call gb_JunitTest_add_classes,sw_complex,\ complex.accessibility.AccessibleRelationSet \ - complex.writer.CheckBookmarks \ complex.checkColor.CheckChangeColor \ complex.writer.CheckCrossReferences \ complex.writer.CheckFields\ @@ -68,4 +67,11 @@ $(eval $(call gb_JunitTest_add_classes,sw_complex,\ complex.writer.TextPortionEnumerationTest \ )) +# FIXME has never worked on windows, hashes are different +ifneq ($(OS),WNT) +$(eval $(call gb_JunitTest_add_classes,sw_complex,\ + complex.writer.CheckBookmarks \ +)) +endif + # vim: set noet sw=4 ts=4: |