Skip to content
Snippets Groups Projects
Commit 4e923725 authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Removed shared_ptr usage for FunctionalTest

parent 640ddc5e
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ void TestFunctionalTests::execute()
if(!readTestNames()) return;
for(size_t i=0; i<m_testNames.size(); ++i) {
FunctionalTest_t test = m_testRegistry.getTest(m_testNames[i]);
boost::scoped_ptr<FunctionalTest> test(m_testRegistry.getTest(m_testNames[i]));
test->getSimulation()->setProgramOptions(mp_options);
test->runTest();
test->analyseResults();
......
......@@ -19,6 +19,8 @@
#include <iostream>
#include <iomanip>
#include <boost/scoped_ptr.hpp>
FunctionalTestRegistry::Catalogue FunctionalTestRegistry::m_catalogue = FunctionalTestRegistry::Catalogue();
......@@ -176,9 +178,9 @@ bool FunctionalTestRegistry::isRegisteredName(const std::string &name)
}
FunctionalTest_t FunctionalTestRegistry::getTest(const std::string &name)
FunctionalTest* FunctionalTestRegistry::getTest(const std::string &name)
{
FunctionalTest_t test(new FunctionalTest(m_catalogue.getInfo(name)));
FunctionalTest* test = new FunctionalTest(m_catalogue.getInfo(name));
return test;
}
......@@ -186,7 +188,7 @@ FunctionalTest_t FunctionalTestRegistry::getTest(const std::string &name)
int FUNCTIONAL_TEST(const std::string &name)
{
FunctionalTestRegistry registry;
FunctionalTest_t test = registry.getTest(name);
boost::scoped_ptr<FunctionalTest> test(registry.getTest(name));
test->runTest();
return test->analyseResults();
}
......
......@@ -44,9 +44,7 @@ public:
void printCatalogue() { m_catalogue.print(); }
FunctionalTest_t getTest(const std::string &name);
//FunctionalTest_t runTest(const std::string &name);
FunctionalTest* getTest(const std::string &name);
bool isRegisteredName(const std::string &name);
......
......@@ -86,7 +86,4 @@ private:
OutputData<double> *m_reference;
};
typedef boost::shared_ptr<FunctionalTest> FunctionalTest_t;
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment