diff --git a/src/node/drop-tail-queue.cc b/src/node/drop-tail-queue.cc index 956e98bad..7e7522958 100644 --- a/src/node/drop-tail-queue.cc +++ b/src/node/drop-tail-queue.cc @@ -55,7 +55,8 @@ TypeId DropTailQueue::GetTypeId (void) DropTailQueue::DropTailQueue () : Queue (), - m_packets () + m_packets (), + m_bytesInQueue (0) { NS_LOG_FUNCTION_NOARGS (); } diff --git a/test.py b/test.py index 75f4afc01..0813ea7a2 100755 --- a/test.py +++ b/test.py @@ -1372,10 +1372,8 @@ def run_tests(): if job.is_break: continue - if job.is_example: + if job.is_example or job.is_pyexample: kind = "Example" - elif job.is_pyexample: - kind = "PythonExample" else: kind = "TestSuite"