From 0c32ccfcd0b770cdd4eeb9d778b7f72a233e229a Mon Sep 17 00:00:00 2001 From: Finn Williams Date: Tue, 12 May 2020 13:37:06 +0100 Subject: IVGCVSW-4737 Add check for CpuRef back-end before using it in tests Signed-off-by: Finn Williams Change-Id: Id7fbb7a39d2e9c7085636df44d4c8603a60cd4bf --- tests/profiling/gatordmock/tests/GatordMockTests.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/profiling') diff --git a/tests/profiling/gatordmock/tests/GatordMockTests.cpp b/tests/profiling/gatordmock/tests/GatordMockTests.cpp index 98ca8ffe90..0170962261 100644 --- a/tests/profiling/gatordmock/tests/GatordMockTests.cpp +++ b/tests/profiling/gatordmock/tests/GatordMockTests.cpp @@ -377,6 +377,11 @@ BOOST_AUTO_TEST_CASE(GatorDMockEndToEnd) BOOST_AUTO_TEST_CASE(GatorDMockTimeLineActivation) { + // This test requires the CpuRef backend to be enabled + if(!BackendRegistryInstance().IsBackendRegistered("CpuRef")) + { + return; + } armnn::MockBackendInitialiser initialiser; // Setup the mock service to bind to the UDS. std::string udsNamespace = "gatord_namespace"; -- cgit v1.2.1