add back TCP test case
authorTom Henderson <tomh@tomh.org>
Fri Oct 23 15:54:35 2009 -0700 (3 months ago)
changeset 55017a340852b479
parent 5500 6db6a279dfff
child 5502 c2ebfa5f4e6d
child 5772 7ab5b27d3387
add back TCP test case
src/internet-stack/tcp-test.cc
     1.1 --- a/src/internet-stack/tcp-test.cc	Fri Oct 23 17:35:38 2009 +0400
     1.2 +++ b/src/internet-stack/tcp-test.cc	Fri Oct 23 15:54:35 2009 -0700
     1.3 @@ -333,9 +333,13 @@
     1.4    TcpTestSuite ()
     1.5      : TestSuite ("tcp", UNIT)
     1.6      {
     1.7 +      // Arguments to these test cases are 1) totalStreamSize, 
     1.8 +      // 2) source write size, 3) source read size
     1.9 +      // 4) server write size, and 5) server read size
    1.10 +      // with units of bytes
    1.11        AddTestCase (new TcpTestCase (13, 200, 200, 200, 200));
    1.12        AddTestCase (new TcpTestCase (13, 1, 1, 1, 1));
    1.13 -      //AddTestCase (new TcpTestCase (100000, 100, 50, 100, 20));
    1.14 +      AddTestCase (new TcpTestCase (100000, 100, 50, 100, 20));
    1.15      }
    1.16    
    1.17  } g_tcpTestSuite;