fixed stats parameters in test lte-epc-e2e-data

This commit is contained in:
Nicola Baldo
2013-09-09 16:01:07 +02:00
parent 7f3d01b337
commit 47f185eab0

View File

@@ -272,16 +272,16 @@ LteEpcE2eDataTestCase::DoRun ()
UintegerValue (2 * 1024 * 1024));
Time simulationTime = Seconds (2.0);
double statsStartTime = 0.040; // need to allow for RRC connection establishment + SRS
double statsStartTime = 0.040; // need to allow for RRC connection establishment + SRS
double statsDuration = 2.0;
lteHelper->EnablePdcpTraces ();
lteHelper->GetPdcpStats ()->SetAttribute ("StartTime", TimeValue (Seconds (statsStartTime)));
lteHelper->GetPdcpStats ()->SetAttribute ("EpochDuration", TimeValue (simulationTime));
lteHelper->GetPdcpStats ()->SetAttribute ("EpochDuration", TimeValue (Seconds (statsDuration)));
Simulator::Stop (simulationTime);
Simulator::Stop (Seconds (statsStartTime + statsDuration - 0.0001));
Simulator::Run ();
uint64_t imsiCounter = 0;