From 188675fd7e7239f56212d72f8ac10598de87e76a Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Fri, 12 Feb 2021 17:16:42 +0000 Subject: IVGCVSW-5665 Basic NN Driver support for next OS Version Signed-off-by: Kevin May Signed-off-by: Sadik Armagan Change-Id: I1e1db52322092c6b1b7ac6183c3adc90aabcec24 --- test/Tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/Tests.cpp') diff --git a/test/Tests.cpp b/test/Tests.cpp index 3b629a7a..0ef142d9 100644 --- a/test/Tests.cpp +++ b/test/Tests.cpp @@ -20,9 +20,9 @@ BOOST_AUTO_TEST_CASE(Init) // Making the driver object on the stack causes a weird libc error, so make it on the heap instead auto driver = std::make_unique(DriverOptions(armnn::Compute::CpuRef)); - DeviceStatus status = driver->getStatus(); + V1_0::DeviceStatus status = driver->getStatus(); // Note double-parentheses to avoid compile error from Boost trying to printf the DeviceStatus - BOOST_TEST((status == DeviceStatus::AVAILABLE)); + BOOST_TEST((status == V1_0::DeviceStatus::AVAILABLE)); } BOOST_AUTO_TEST_CASE(TestCapabilities) -- cgit v1.2.1