aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorColm Donelan <Colm.Donelan@arm.com>2020-06-11 15:35:51 +0100
committerColm Donelan <Colm.Donelan@arm.com>2020-06-11 16:07:10 +0100
commitd0aa456dae928d54fb68eeac2ae75198b9f8e2d6 (patch)
treefbd34e7f3540f507ba544d9f36dc8482eb218c44 /src
parentec6c68093eaef8a2b8e1fd64fcc765237973512e (diff)
downloadarmnn-d0aa456dae928d54fb68eeac2ae75198b9f8e2d6.tar.gz
Cleaning up unit test GetProfilingGuidGenerator.
* Removing duplicate check of backendProfilingIface * Removing BOOST_CHECK(firstGuid) which appears to cause problems in v7 environments. Signed-off-by: Colm Donelan <Colm.Donelan@arm.com> Change-Id: I0d605e9f42c6557270c12c3e33c0617e2b44ad0d
Diffstat (limited to 'src')
-rw-r--r--src/backends/backendsCommon/test/BackendProfilingTests.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backends/backendsCommon/test/BackendProfilingTests.cpp b/src/backends/backendsCommon/test/BackendProfilingTests.cpp
index 66f99bea8c..306c0240df 100644
--- a/src/backends/backendsCommon/test/BackendProfilingTests.cpp
+++ b/src/backends/backendsCommon/test/BackendProfilingTests.cpp
@@ -499,9 +499,7 @@ BOOST_AUTO_TEST_CASE(GetProfilingGuidGenerator)
// Get the Guid generator and check the getting two Guid's results in the second being greater than the first.
armnn::profiling::IProfilingGuidGenerator& guidGenerator = backendProfilingIface->GetProfilingGuidGenerator();
- BOOST_CHECK(backendProfilingIface);
const armnn::profiling::ProfilingDynamicGuid& firstGuid = guidGenerator.NextGuid();
- BOOST_CHECK(firstGuid);
const armnn::profiling::ProfilingDynamicGuid& secondGuid = guidGenerator.NextGuid();
BOOST_CHECK(secondGuid > firstGuid);