bug 856, initialize vbl
authorCraig Dowell <craigdo@ee.washington.edu>
Thu, 15 Apr 2010 15:11:49 -0700
changeset 6203 1204777b0bcf
parent 6202 c6b85405f6fe
child 6204 db1a9442b29f
bug 856, initialize vbl
src/node/drop-tail-queue.cc
test.py
--- a/src/node/drop-tail-queue.cc	Thu Apr 15 11:35:40 2010 -0700
+++ b/src/node/drop-tail-queue.cc	Thu Apr 15 15:11:49 2010 -0700
@@ -55,7 +55,8 @@
 
 DropTailQueue::DropTailQueue () :
   Queue (),
-  m_packets ()
+  m_packets (),
+  m_bytesInQueue (0)
 {
   NS_LOG_FUNCTION_NOARGS ();
 }
--- a/test.py	Thu Apr 15 11:35:40 2010 -0700
+++ b/test.py	Thu Apr 15 15:11:49 2010 -0700
@@ -1372,10 +1372,8 @@
         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"