From 59400fdb5970561d90e7edc80f5c8b257b0a45df Mon Sep 17 00:00:00 2001 From: Nicola Baldo Date: Tue, 8 Jan 2013 13:45:31 +0100 Subject: [PATCH] fixed unused variable warning for optimized build in lte-test-harq.cc --- src/lte/test/lte-test-harq.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lte/test/lte-test-harq.cc b/src/lte/test/lte-test-harq.cc index 76e8fd679..fa2fa10c5 100644 --- a/src/lte/test/lte-test-harq.cc +++ b/src/lte/test/lte-test-harq.cc @@ -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!"); }