diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-09-17 13:35:47 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-17 13:35:54 +0200 |
commit | cdd7e25a5b7be8f6161629417c96fcf76858c135 (patch) | |
tree | 8af9145e6f20a5f9e4c4f0e527342c94eb91f4ef /basic | |
parent | 1e5e5c4022d582e2bef86425560f5109d41bdd63 (diff) |
These tests do not need the UCB
Change-Id: Ic5cd29efc01df5c77a7b4619f3e0cddb483817a6
Diffstat (limited to 'basic')
-rw-r--r-- | basic/CppunitTest_basic_enable.mk | 2 | ||||
-rw-r--r-- | basic/CppunitTest_basic_nested_struct.mk | 2 | ||||
-rw-r--r-- | basic/qa/cppunit/basictest.hxx | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/basic/CppunitTest_basic_enable.mk b/basic/CppunitTest_basic_enable.mk index f6c72f5c8206..3857909e4750 100644 --- a/basic/CppunitTest_basic_enable.mk +++ b/basic/CppunitTest_basic_enable.mk @@ -52,7 +52,5 @@ $(eval $(call gb_CppunitTest_use_ure,basic_enable)) $(eval $(call gb_CppunitTest_use_components,basic_enable,\ configmgr/source/configmgr \ - ucb/source/core/ucb1 \ - ucb/source/ucp/file/ucpfile1 \ )) $(eval $(call gb_CppunitTest_use_configuration,basic_enable)) diff --git a/basic/CppunitTest_basic_nested_struct.mk b/basic/CppunitTest_basic_nested_struct.mk index 78aee47899e3..4b0e33d42b67 100644 --- a/basic/CppunitTest_basic_nested_struct.mk +++ b/basic/CppunitTest_basic_nested_struct.mk @@ -53,8 +53,6 @@ $(eval $(call gb_CppunitTest_use_ure,basic_nested_struct)) $(eval $(call gb_CppunitTest_use_components,basic_nested_struct,\ configmgr/source/configmgr \ - ucb/source/core/ucb1 \ - ucb/source/ucp/file/ucpfile1 \ )) $(eval $(call gb_CppunitTest_use_configuration,basic_nested_struct)) diff --git a/basic/qa/cppunit/basictest.hxx b/basic/qa/cppunit/basictest.hxx index 79a3fe397653..bb26a2349bcb 100644 --- a/basic/qa/cppunit/basictest.hxx +++ b/basic/qa/cppunit/basictest.hxx @@ -22,7 +22,7 @@ class BasicTestBase : public test::BootstrapFixture private: bool mbError; public: - BasicTestBase() : mbError(false) {}; + BasicTestBase() : BootstrapFixture(true, false), mbError(false) {}; DECL_LINK( BasicErrorHdl, StarBASIC * ); |