From 8b20065e8e139901f09e2da1a761c6225048102a Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Thu, 24 Oct 2019 18:07:44 +0100 Subject: IVGCVSW-4028 Add TimelinePacketWriterFactory to ProfilingService Change-Id: I1baf6ff49fc591577efab8190352f2ae5a7dc5e5 Signed-off-by: Jim Flynn --- src/profiling/test/SendTimelinePacketTests.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/profiling/test/SendTimelinePacketTests.cpp') diff --git a/src/profiling/test/SendTimelinePacketTests.cpp b/src/profiling/test/SendTimelinePacketTests.cpp index 4045d263fa..9b144bb3d3 100644 --- a/src/profiling/test/SendTimelinePacketTests.cpp +++ b/src/profiling/test/SendTimelinePacketTests.cpp @@ -403,4 +403,15 @@ BOOST_AUTO_TEST_CASE(GetGuidsFromProfilingService) BOOST_CHECK(dynamicGuid == expectedDynamicValue); } +BOOST_AUTO_TEST_CASE(GetTimelinePackerWriterFromProfilingService) +{ + armnn::Runtime::CreationOptions::ExternalProfilingOptions options; + options.m_EnableProfiling = true; + ProfilingService& profilingService = ProfilingService::Instance(); + profilingService.ResetExternalProfilingOptions(options, true); + + std::unique_ptr writer = profilingService.GetSendTimelinePacket(); + BOOST_CHECK(writer != nullptr); +} + BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.1