From 67ef2a52c3cdcc37538d77711bbcea2f0e5655e5 Mon Sep 17 00:00:00 2001 From: Matteo Martincigh Date: Thu, 10 Oct 2019 13:29:02 +0100 Subject: IVGCVSW-3964 Change the type held by the Packet class to unsigned char * Updated the Packet class * Updated the pertinent code accordingly Signed-off-by: Matteo Martincigh Change-Id: I73eab5b1ead67a610cd17fd33f8a74f764ad8cc4 --- .../test/ProfilingConnectionDumpToFileDecoratorTests.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp') diff --git a/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp b/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp index fac93c5ddf..a7acdd63cc 100644 --- a/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp +++ b/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp @@ -32,7 +32,7 @@ class DummyProfilingConnection : public IProfilingConnection public: DummyProfilingConnection() : m_Open(true) - , m_PacketData(std::make_unique(g_DataLength)) + , m_PacketData(std::make_unique(g_DataLength)) { // populate packet data and construct packet std::memcpy(m_PacketData.get(), g_DataPtr, g_DataLength); @@ -65,8 +65,8 @@ public: } private: - bool m_Open; - std::unique_ptr m_PacketData; + bool m_Open; + std::unique_ptr m_PacketData; std::unique_ptr m_Packet; }; @@ -128,7 +128,7 @@ BOOST_AUTO_TEST_CASE(DumpIncomingValidFile) decorator.Close(); std::vector data = ReadDumpFile(settings.m_IncomingDumpFileName); - const char* packetData = packet->GetData(); + const char* packetData = reinterpret_cast(packet->GetData()); // check if the data read back from the dump file matches the original constexpr unsigned int bytesToSkip = 2u * sizeof(uint32_t); // skip header and packet length -- cgit v1.2.1