From 4aa8e527e9cf9e2e46c3393b382ba420493678e2 Mon Sep 17 00:00:00 2001 From: "Joachim Wuttke (o)" <j.wuttke@fz-juelich.de> Date: Wed, 10 Aug 2016 14:41:14 +0200 Subject: [PATCH] Finished conversion to boolean return value for runTest. --- Tests/Functional/Core/BatchSimulation.cpp | 4 ++-- Tests/Functional/Core/CoreTest.cpp | 1 - Tests/Functional/Core/CoreTest.h | 1 + Tests/Functional/Fit/IMinimizerTest.cpp | 16 ++++++++-------- Tests/Functional/Fit/IMinimizerTest.h | 4 ++-- .../PyCore/persistence/PyPersistenceTest.cpp | 4 ++-- Tests/Functional/TestMachinery/IStandardTest.cpp | 5 +++-- 7 files changed, 18 insertions(+), 17 deletions(-) diff --git a/Tests/Functional/Core/BatchSimulation.cpp b/Tests/Functional/Core/BatchSimulation.cpp index 9eb7718411c..48eb3ef95b2 100644 --- a/Tests/Functional/Core/BatchSimulation.cpp +++ b/Tests/Functional/Core/BatchSimulation.cpp @@ -6,7 +6,7 @@ #include <iostream> #include <memory> -int TestBatchSimulation() +bool TestBatchSimulation() { SimulationFactory sim_registry; const std::unique_ptr<GISASSimulation> simulation(sim_registry.createItem("MiniGISAS")); @@ -44,5 +44,5 @@ int TestBatchSimulation() int main(int, char**) { - return TestBatchSimulation(); + return TestBatchSimulation() ? 0 : 1; } diff --git a/Tests/Functional/Core/CoreTest.cpp b/Tests/Functional/Core/CoreTest.cpp index b5d8bc51c4d..68e9c778209 100644 --- a/Tests/Functional/Core/CoreTest.cpp +++ b/Tests/Functional/Core/CoreTest.cpp @@ -36,7 +36,6 @@ CoreTest::~CoreTest() bool CoreTest::runTest() { // Load reference if available - OutputData<double>* m_reference; try { m_reference = IntensityDataIOFactory::readOutputData( FileSystem::GetJoinPath(CORE_STD_REF_DIR, getName() + ".int.gz")); diff --git a/Tests/Functional/Core/CoreTest.h b/Tests/Functional/Core/CoreTest.h index 4b8ff05f4f8..eb184d6b1c4 100644 --- a/Tests/Functional/Core/CoreTest.h +++ b/Tests/Functional/Core/CoreTest.h @@ -38,6 +38,7 @@ public: private: GISASSimulation* m_simulation; + OutputData<double>* m_reference; }; #endif // CORETEST_H diff --git a/Tests/Functional/Fit/IMinimizerTest.cpp b/Tests/Functional/Fit/IMinimizerTest.cpp index 84146e1ffa6..ac11db426cd 100644 --- a/Tests/Functional/Fit/IMinimizerTest.cpp +++ b/Tests/Functional/Fit/IMinimizerTest.cpp @@ -46,7 +46,7 @@ IMinimizerTest::IMinimizerTest(const std::string& minimizer_name, } -void IMinimizerTest::runTest() +bool IMinimizerTest::runTest() { std::unique_ptr<ISample> sample(createSample()); for (size_t i = 0; i < m_parameters.size(); ++i) @@ -69,16 +69,17 @@ void IMinimizerTest::runTest() m_parameters[i].m_found_value = valuesAtMinimum[i]; // analyze results + bool success = true; for (size_t i = 0; i < m_parameters.size(); ++i) { double diff = std::abs(m_parameters[i].m_found_value - m_parameters[i].m_real_value) / m_parameters[i].m_real_value; if (diff > m_parameter_tolerance) - m_result = FAILED; - std::cout << boost::format("%|12t| %-10s : %-6.4f (diff %6.4g) \n") % - m_parameters[i].m_name % m_parameters[i].m_found_value % diff; + success = false; + std::cout << boost::format("%|12t| %-10s : %-6.4f (diff %6.4g) %s\n") % + m_parameters[i].m_name % m_parameters[i].m_found_value % diff % + (success ? "OK" : "FAILED"); } - - std::cout << getName() << " | " << getDescription() << " | " << getTestResultString() << "\n"; + return success; } std::unique_ptr<FitSuite> IMinimizerTest::createFitSuite() @@ -89,11 +90,10 @@ std::unique_ptr<FitSuite> IMinimizerTest::createFitSuite() m_minimizer_name, m_minimizer_algorithm); minimizer->getOptions()->setMaxIterations(200); result->setMinimizer(minimizer); - for (size_t i = 0; i < m_parameters.size(); ++i) { + for (size_t i = 0; i < m_parameters.size(); ++i) result->addFitParameter( m_parameters[i].m_name, m_parameters[i].m_start_value, AttLimits::lowerLimited(0.01), m_parameters[i].m_start_value / 100.); - } return result; } diff --git a/Tests/Functional/Fit/IMinimizerTest.h b/Tests/Functional/Fit/IMinimizerTest.h index 49377d2bdb4..853d498af7f 100644 --- a/Tests/Functional/Fit/IMinimizerTest.h +++ b/Tests/Functional/Fit/IMinimizerTest.h @@ -35,7 +35,7 @@ public: const std::string &minimizer_algorithm = std::string()); virtual ~IMinimizerTest(){} - void runTest(); + bool runTest() final; class TestParameter { @@ -53,7 +53,7 @@ protected: virtual std::unique_ptr<FitSuite> createFitSuite(); virtual std::unique_ptr<ISample> createSample(); virtual std::unique_ptr<GISASSimulation> createSimulation(); - virtual std::unique_ptr<OutputData<double> > createOutputData(const GISASSimulation *simulation); + virtual std::unique_ptr<OutputData<double>> createOutputData(const GISASSimulation* simulation); std::vector<TestParameter> m_parameters; std::string m_minimizer_name; diff --git a/Tests/Functional/PyCore/persistence/PyPersistenceTest.cpp b/Tests/Functional/PyCore/persistence/PyPersistenceTest.cpp index b29b51e290b..49690b5ed45 100644 --- a/Tests/Functional/PyCore/persistence/PyPersistenceTest.cpp +++ b/Tests/Functional/PyCore/persistence/PyPersistenceTest.cpp @@ -34,7 +34,7 @@ PyPersistenceTest::PyPersistenceTest( {} //! Runs a Python script, and returns true if the output of the script agrees with reference data. -void PyPersistenceTest::runTest() +bool PyPersistenceTest::runTest() { std::string dat_stem = FileSystem::GetJoinPath(PYPERSIST_OUT_DIR, getName()); std::string ref_stem = FileSystem::GetJoinPath(PYPERSIST_REF_DIR, getName()); @@ -122,7 +122,7 @@ bool PyPersistenceTest::compareIntensityPair( { const OutputData<double>* dat = IntensityDataIOFactory::readOutputData( dat_fpath ); const OutputData<double>* ref = IntensityDataIOFactory::readOutputData( ref_fpath ); - return compareIntensityMaps(*dat, *ref)==SUCCESS; + return compareIntensityMaps(*dat, *ref); } //! Returns true if YAML files from test output and reference agree. diff --git a/Tests/Functional/TestMachinery/IStandardTest.cpp b/Tests/Functional/TestMachinery/IStandardTest.cpp index 22d1e9cfd48..392b676444f 100644 --- a/Tests/Functional/TestMachinery/IStandardTest.cpp +++ b/Tests/Functional/TestMachinery/IStandardTest.cpp @@ -73,12 +73,13 @@ bool IStandardTest::execute_subtests() for (size_t i = 0; i < n_subtests; ++i) { setName( m_info->m_test_name + "_" + subtest_names[i] ); m_subtest_item = subtest_registry->getItem(subtest_names[i]); - IFunctionalTest* subtest( getTest() ); std::cout << "IStandardTest::execute() -> " << getName() << " " << i+1 << "/" << n_subtests << " (" << subtest_names[i] << ")\n"; + if(!subtest->runTest()) { ++number_of_failed_tests; - delete subtest; + delete subtest; + } } delete subtest_registry; -- GitLab