aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/test/RuntimeTests.cpp
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2020-03-19 18:16:46 +0000
committerJim Flynn <jim.flynn@arm.com>2020-03-20 08:40:35 +0000
commitea41b57721b644b9350e14754d3ecdcfba87667f (patch)
tree8c1af375cc5df932f26423380e4536b7aaca7d13 /src/armnn/test/RuntimeTests.cpp
parentb60dd243d3d8131f246f2b122309b998287151d2 (diff)
downloadarmnn-ea41b57721b644b9350e14754d3ecdcfba87667f.tar.gz
IVGCVSW-4582 Undefined reference to GetProfilingService causes failure in the Backends CI job
* Enable the GetProfilingService() function to BackendProfilingTests and ProfilingTestUtils Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I32e3625db0f465883f2ec27fb7c2fad4e91b6306
Diffstat (limited to 'src/armnn/test/RuntimeTests.cpp')
-rw-r--r--src/armnn/test/RuntimeTests.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/armnn/test/RuntimeTests.cpp b/src/armnn/test/RuntimeTests.cpp
index 9ced7e907c..d5bc26a72e 100644
--- a/src/armnn/test/RuntimeTests.cpp
+++ b/src/armnn/test/RuntimeTests.cpp
@@ -21,6 +21,7 @@
#include <boost/test/unit_test.hpp>
#include "RuntimeTests.hpp"
+#include "TestUtils.hpp"
namespace armnn
{
@@ -30,11 +31,6 @@ void RuntimeLoadedNetworksReserve(armnn::Runtime* runtime)
runtime->m_LoadedNetworks.reserve(1);
}
-profiling::ProfilingService& GetProfilingService(armnn::Runtime* runtime)
-{
- return runtime->m_ProfilingService;
-}
-
}
BOOST_AUTO_TEST_SUITE(Runtime)