aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/SendCounterPacketTests.hpp
diff options
context:
space:
mode:
authorColm Donelan <Colm.Donelan@arm.com>2019-11-29 09:10:59 +0000
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-11-29 11:37:17 +0000
commit2ba48d251d0fe4dca214497ac33283106ca0973b (patch)
treed92ca2462e1853ac116dc8dd26c7c3afac4103c6 /src/profiling/test/SendCounterPacketTests.hpp
parente011d20f279e6e67e899bc6930b0266fc357bc1c (diff)
downloadarmnn-2ba48d251d0fe4dca214497ac33283106ca0973b.tar.gz
IVGCVSW-4118 Fix long unit test execution
* Reduced sleep_for timings * Removed duplicate SendStreamMetaDataPacket. * Modified SendCounterPacket::WaitForPacketSent to use wait_for * Modified SendCounterPacket::Send WaitingForAck to use wait_for * Added destructor to StreamRedirector. * Added method SendCounterPacketTests::HasWrittenData * Restructured many tests in ProfilingTests. Signed-off-by: Keith Davis <keith.davis@arm.com> Change-Id: I55c59cac6674ac40a1056a5302a997d5da9e9d91 Signed-off-by: Colm Donelan <Colm.Donelan@arm.com>
Diffstat (limited to 'src/profiling/test/SendCounterPacketTests.hpp')
-rw-r--r--src/profiling/test/SendCounterPacketTests.hpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/profiling/test/SendCounterPacketTests.hpp b/src/profiling/test/SendCounterPacketTests.hpp
index cd41418e2c..4395d81d16 100644
--- a/src/profiling/test/SendCounterPacketTests.hpp
+++ b/src/profiling/test/SendCounterPacketTests.hpp
@@ -67,11 +67,9 @@ public:
Packet ReadPacket(uint32_t timeout) override
{
- // Simulate a delay in the reading process
- std::this_thread::sleep_for(std::chrono::milliseconds(timeout));
-
+ // Simulate a delay in the reading process. The default timeout is way too long.
+ std::this_thread::sleep_for(std::chrono::milliseconds(5));
std::lock_guard<std::mutex> lock(m_Mutex);
-
return std::move(m_Packet);
}
@@ -84,6 +82,12 @@ public:
return writtenData;
}
+ const bool HasWrittenData()
+ {
+ std::lock_guard<std::mutex> lock(m_Mutex);
+ return !m_WrittenData.empty();
+ }
+
void Clear()
{
std::lock_guard<std::mutex> lock(m_Mutex);