aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/test/UnitTests.hpp
diff options
context:
space:
mode:
authorColm Donelan <Colm.Donelan@arm.com>2021-05-17 13:01:52 +0100
committerColm Donelan <Colm.Donelan@arm.com>2021-05-18 11:25:13 +0100
commit25ab3a8326a9e2c52c84b2747fa72907109a695d (patch)
tree1d4eaaf5b41c68a4e3b3ce2cc400c3ffd76d510c /src/armnn/test/UnitTests.hpp
parent1d239f5717e6e4adc47683e30a48b05e7511c734 (diff)
downloadarmnn-25ab3a8326a9e2c52c84b2747fa72907109a695d.tar.gz
IVGCVSW-5964 Removing some remaining boost utility usages from tests.
* Adding a basic PredicateResult class to replace boost::test_tools::predicate_result * Replacing all uses of boost::test_tools::predicate_result with the new armnn::PredicateResult class * Replacing use of boost::test_tools::output_test_stream output with std::ostringstream in ProfilerTests.cpp Signed-off-by: Colm Donelan <Colm.Donelan@arm.com> Change-Id: I75cdbbff98d984e26e4a50c125386b2988516fad
Diffstat (limited to 'src/armnn/test/UnitTests.hpp')
-rw-r--r--src/armnn/test/UnitTests.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/armnn/test/UnitTests.hpp b/src/armnn/test/UnitTests.hpp
index c15477bf19..b55b13d4c8 100644
--- a/src/armnn/test/UnitTests.hpp
+++ b/src/armnn/test/UnitTests.hpp
@@ -42,7 +42,8 @@ void CompareTestResultIfSupported(const std::string& testName, const LayerTestRe
"The test name does not match the supportedness it is reporting");
if (testResult.supported)
{
- BOOST_TEST(CompareTensors(testResult.output, testResult.outputExpected, testResult.compareBoolean));
+ auto result = CompareTensors(testResult.output, testResult.outputExpected, testResult.compareBoolean);
+ BOOST_TEST(result.m_Result, result.m_Message.str());
}
}
@@ -56,7 +57,8 @@ void CompareTestResultIfSupported(const std::string& testName, const std::vector
"The test name does not match the supportedness it is reporting");
if (testResult[i].supported)
{
- BOOST_TEST(CompareTensors(testResult[i].output, testResult[i].outputExpected));
+ auto result = CompareTensors(testResult[i].output, testResult[i].outputExpected);
+ BOOST_TEST(result.m_Result, result.m_Message.str());
}
}
}