fixed unused variable warning for optimized build in lte-test-harq.cc

This commit is contained in:
Nicola Baldo
2013-01-08 13:45:31 +01:00
parent f19b3a61d8
commit 59400fdb59

View File

@@ -251,6 +251,7 @@ LenaHarqTestCase::DoRun (void)
NS_LOG_INFO (" User " << i << " imsi " << imsi << " bytes rxed/t " << rxed/statsDuration << " txed/t " << txed/statsDuration << " thr Ref " << m_throughputRef << " Err " << (abs (txed/statsDuration - m_throughputRef)) / m_throughputRef);
NS_TEST_ASSERT_MSG_EQ_TOL (txed/statsDuration, m_throughputRef, m_throughputRef * tolerance, " Unexpected Throughput!");
NS_TEST_ASSERT_MSG_EQ_TOL (rxed/statsDuration, m_throughputRef, m_throughputRef * tolerance, " Unexpected Throughput!");
}