diff options
author | Michael Stahl <mstahl@redhat.com> | 2011-12-07 12:57:51 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2011-12-09 15:18:02 +0100 |
commit | ca4483b55b7ec9d15dfb29def31e2d7ea9038695 (patch) | |
tree | e1ac8cd6113b03f13f4e57be43f84c45f92fa7e1 /sw/CppunitTest_sw_macros_test.mk | |
parent | 1da85eb63bfcbe22677ff54587fcb250fec74cd5 (diff) |
CppunitTest_sw_macros_test.mk: depends on vbaswobj
This should fix the spurious segfaults caused by running the test while
the library is being overwritten in parallel that cannot be reproduced
by just running the test.
Diffstat (limited to 'sw/CppunitTest_sw_macros_test.mk')
-rw-r--r-- | sw/CppunitTest_sw_macros_test.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/CppunitTest_sw_macros_test.mk b/sw/CppunitTest_sw_macros_test.mk index 9c2c11f04cfa..a640452fad82 100644 --- a/sw/CppunitTest_sw_macros_test.mk +++ b/sw/CppunitTest_sw_macros_test.mk @@ -137,6 +137,8 @@ $(eval $(call gb_CppunitTest_set_args,sw_macros_test,\ # a) explicitly depend on library msword because it is not implied by a link # relation # b) explicitly depend on the sw resource files needed at unit-test runtime -$(call gb_CppunitTest_get_target,sw_macros_test) : $(call gb_Library_get_target,msword) +$(call gb_CppunitTest_get_target,sw_macros_test) : \ + $(call gb_Library_get_target,msword) \ + $(call gb_Library_get_target,vbaswobj) \ # vim: set noet sw=4 ts=4: |