From d0aa456dae928d54fb68eeac2ae75198b9f8e2d6 Mon Sep 17 00:00:00 2001 From: Colm Donelan Date: Thu, 11 Jun 2020 15:35:51 +0100 Subject: 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 Change-Id: I0d605e9f42c6557270c12c3e33c0617e2b44ad0d --- src/backends/backendsCommon/test/BackendProfilingTests.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/backends/backendsCommon/test/BackendProfilingTests.cpp') 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); -- cgit v1.2.1