diff --git a/catalogue/DummyCatalogue.hpp b/catalogue/DummyCatalogue.hpp index a9778e562b5725f738a3d023e357f897b36c5d9c..b314e32ed2e8d9b9f30ff534970a3cf8c9d5076e 100644 --- a/catalogue/DummyCatalogue.hpp +++ b/catalogue/DummyCatalogue.hpp @@ -32,7 +32,6 @@ namespace catalogue { class DummyCatalogue: public Catalogue { public: DummyCatalogue() {} - DummyCatalogue(const cta::catalogue::DummyCatalogue*) {} virtual ~DummyCatalogue() { } void createActivitiesFairShareWeight(const common::dataStructures::SecurityIdentity& admin, const std::string& diskInstanceName, const std::string& acttivity, double weight, const std::string & comment) override { throw exception::Exception(std::string("In ")+__PRETTY_FUNCTION__+": not implemented"); } diff --git a/scheduler/OStoreDB/OStoreDBTest.cpp b/scheduler/OStoreDB/OStoreDBTest.cpp index f0d8eb2a4a08ec35db5311b35ae12066e5d92b3a..042245277ee7c79d2326cdbe81112320e9159163 100644 --- a/scheduler/OStoreDB/OStoreDBTest.cpp +++ b/scheduler/OStoreDB/OStoreDBTest.cpp @@ -64,7 +64,7 @@ public: // We do a deep reference to the member as the C++ compiler requires the function to be // already defined if called implicitly. const auto &factory = GetParam().dbFactory; - m_catalogue = cta::make_unique<cta::catalogue::DummyCatalogue>(new cta::catalogue::DummyCatalogue); + m_catalogue = cta::make_unique<cta::catalogue::DummyCatalogue>(); // Get the OStore DB from the factory. auto osdb = std::move(factory.create(m_catalogue)); // Make sure the type of the SchedulerDatabase is correct (it should be an OStoreDBWrapperInterface). @@ -75,6 +75,7 @@ public: virtual void TearDown() { m_db.reset(); + m_catalogue.reset(); } cta::objectstore::OStoreDBWrapperInterface &getDb() { diff --git a/scheduler/SchedulerDatabaseTest.cpp b/scheduler/SchedulerDatabaseTest.cpp index 21ba58a22ab0e4b2873cb813b93dd88248643149..178dd76f62914cc351175e89e733509b5f1e0cd0 100644 --- a/scheduler/SchedulerDatabaseTest.cpp +++ b/scheduler/SchedulerDatabaseTest.cpp @@ -72,12 +72,13 @@ public: using namespace cta; const SchedulerDatabaseFactory &factory = GetParam().dbFactory; - m_catalogue = cta::make_unique<cta::catalogue::DummyCatalogue>(new cta::catalogue::DummyCatalogue); + m_catalogue = cta::make_unique<cta::catalogue::DummyCatalogue>(); m_db.reset(factory.create(m_catalogue).release()); } virtual void TearDown() { m_db.reset(); + m_catalogue.reset(); } cta::SchedulerDatabase &getDb() {