From aadf428212eb9cdb446960a8f375ac6ea6a0a3de Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Mon, 3 Jul 2017 19:32:55 +0200 Subject: [PATCH] test debugging --- testApp/remote/channelAccessIFTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testApp/remote/channelAccessIFTest.cpp b/testApp/remote/channelAccessIFTest.cpp index 6c9e07a..44a8aec 100644 --- a/testApp/remote/channelAccessIFTest.cpp +++ b/testApp/remote/channelAccessIFTest.cpp @@ -1786,7 +1786,7 @@ void ChannelAccessIFTest::test_channelMonitor(int queueSize) { return; } else { - testOk(monitorReq->getMonitorCounter() == 1, "%s: monitor event happened", CURRENT_FUNCTION); + testOk(monitorReq->getMonitorCounter() == 1, "%s: monitor event happened %d", CURRENT_FUNCTION, monitorReq->getMonitorCounter()); testOk(monitorReq->getChangedBitSet()->cardinality() == 1, "%s: monitor cardinality is 1", CURRENT_FUNCTION); testOk(monitorReq->getChangedBitSet()->get(0) == true, "%s: changeBitSet get(0) is true ", CURRENT_FUNCTION); } @@ -1812,7 +1812,7 @@ void ChannelAccessIFTest::test_channelMonitor(int queueSize) { return; } - testOk(monitorReq->getMonitorCounter() == i, "%s: monitor event happened for i=%d", CURRENT_FUNCTION, i); + testOk(monitorReq->getMonitorCounter() == i, "%s: monitor event happened for i=%d != %d", CURRENT_FUNCTION, i, monitorReq->getMonitorCounter()); if (queueSize == 1 ) { testOk(monitorReq->getChangedBitSet()->cardinality() == 1, "%s: monitor cardinality is 1 (queue size = 1)",