aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/test/FileOnlyProfilingDecoratorTests.cpp')
-rw-r--r--src/profiling/test/FileOnlyProfilingDecoratorTests.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp b/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp
index 164a94a9ec..80236ae4eb 100644
--- a/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp
+++ b/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp
@@ -3,10 +3,7 @@
// SPDX-License-Identifier: MIT
//
-#include <armnn/utility/IgnoreUnused.hpp>
-#include <FileOnlyProfilingConnection.hpp>
#include <Filesystem.hpp>
-#include <NullProfilingConnection.hpp>
#include <ProfilingService.hpp>
#include <Runtime.hpp>
#include "PrintPacketHeaderHandler.hpp"
@@ -17,7 +14,6 @@
#include <boost/test/unit_test.hpp>
#include <cstdio>
-#include <fstream>
#include <sstream>
#include <sys/stat.h>
@@ -53,6 +49,12 @@ std::string UniqueFileName()
BOOST_AUTO_TEST_CASE(TestFileOnlyProfiling)
{
+ // This test requires the CpuRef backend to be enabled
+ if(!BackendRegistryInstance().IsBackendRegistered("CpuRef"))
+ {
+ return;
+ }
+
// Create a temporary file name.
boost::filesystem::path tempPath = boost::filesystem::temp_directory_path();
boost::filesystem::path tempFile = UniqueFileName();