summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-04-12 00:53:55 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-04-12 00:53:55 -0400
commit5b14929dd4f659420c5707b7c432fb9337cfff1d (patch)
tree7b65178bc915d0ebbad18ace80515a146e39b168 /test
parentc0de63a858ee02bba2a9154b239085a64a277999 (diff)
Handle the correct deletion order of EditDLL in the base class.
Turns out that this change affected all cppunit runs.
Diffstat (limited to 'test')
-rw-r--r--test/Library_test.mk1
-rw-r--r--test/source/bootstrapfixture.cxx2
2 files changed, 3 insertions, 0 deletions
diff --git a/test/Library_test.mk b/test/Library_test.mk
index 571d26ccd3d3..f66e101857eb 100644
--- a/test/Library_test.mk
+++ b/test/Library_test.mk
@@ -42,6 +42,7 @@ $(eval $(call gb_Library_use_libraries,test,\
comphelper \
cppu \
cppuhelper \
+ editeng \
i18nisolang1 \
sal \
tl \
diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx
index 284dbf7f3210..f4b81398a295 100644
--- a/test/source/bootstrapfixture.cxx
+++ b/test/source/bootstrapfixture.cxx
@@ -42,6 +42,7 @@
#include <vcl/svapp.hxx>
#include <tools/resmgr.hxx>
#include <unotools/syslocaleoptions.hxx>
+#include <editeng/eerdll.hxx>
using namespace ::com::sun::star;
@@ -107,6 +108,7 @@ void test::BootstrapFixture::setUp()
void test::BootstrapFixture::tearDown()
{
ucbhelper::ContentBroker::deinitialize();
+ EditDLL::Release();
test::BootstrapFixtureBase::tearDown();
}