aboutsummaryrefslogtreecommitdiff
path: root/tests/profiling/gatordmock/PeriodicCounterCaptureCommandHandler.hpp
diff options
context:
space:
mode:
authorColm Donelan <Colm.Donelan@arm.com>2019-10-18 16:49:28 +0100
committerColm Donelan <Colm.Donelan@arm.com>2019-10-18 16:53:36 +0100
commit5884708e650a80e355398532bc320bbabdbb53f4 (patch)
tree4c752153a8eefbe5046bcd603be113b3e7868673 /tests/profiling/gatordmock/PeriodicCounterCaptureCommandHandler.hpp
parentbccc3450179402ea0cf608171833dbc4f297056f (diff)
downloadarmnn-5884708e650a80e355398532bc320bbabdbb53f4.tar.gz
IVGCVSW-3721 Add support for startup sequence (Mock Gatord service).
Fixing logic error in PeriodicCounterCaptureCommandHandler. Default quiet operation should be false and the unit tests should set it to true. Signed-off-by: Colm Donelan <Colm.Donelan@arm.com> Change-Id: Icabf30819985811e42168a98909b44a6c5f5d4df
Diffstat (limited to 'tests/profiling/gatordmock/PeriodicCounterCaptureCommandHandler.hpp')
-rw-r--r--tests/profiling/gatordmock/PeriodicCounterCaptureCommandHandler.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/profiling/gatordmock/PeriodicCounterCaptureCommandHandler.hpp b/tests/profiling/gatordmock/PeriodicCounterCaptureCommandHandler.hpp
index 05539a4073..4135a2fb06 100644
--- a/tests/profiling/gatordmock/PeriodicCounterCaptureCommandHandler.hpp
+++ b/tests/profiling/gatordmock/PeriodicCounterCaptureCommandHandler.hpp
@@ -37,7 +37,7 @@ public:
PeriodicCounterCaptureCommandHandler(uint32_t familyId,
uint32_t packetId,
uint32_t version,
- bool quietOperation = true)
+ bool quietOperation = false)
: CommandHandlerFunctor(familyId, packetId, version)
, m_QuietOperation(quietOperation)
{}