tcp: More test on TcpClassicRecovery

This commit is contained in:
Viyom
2018-05-15 22:19:39 +02:00
parent be1056f204
commit 0ea5aa6c8b

View File

@@ -125,6 +125,18 @@ public:
AddTestCase (new ClassicRecoveryTest (3000, 500, 2500, 3,
"Classic recovery test on cWnd and cWndInfl with 500 bytes segmentSize"),
TestCase::QUICK);
AddTestCase (new ClassicRecoveryTest (3000, 500, 2500, 3, "Classic recovery test with 500 bytes segmentSize"),
TestCase::QUICK);
AddTestCase (new ClassicRecoveryTest (3000, 1000, 2500, 3, "Classic recovery test with 1000 bytes segmentSize"),
TestCase::QUICK);
AddTestCase (new ClassicRecoveryTest (3000, 500, 2500, 4, "Classic recovery test with 4 DupAck threshold"),
TestCase::QUICK);
AddTestCase (new ClassicRecoveryTest (3000, 500, 1000, 3, "Classic recovery test with 1000 bytes ssThresh"),
TestCase::QUICK);
AddTestCase (new ClassicRecoveryTest (2500, 500, 2500, 3, "Classic recovery test with same cWnd and ssThresh"),
TestCase::QUICK);
AddTestCase (new ClassicRecoveryTest (1000, 500, 2500, 3, "Classic recovery test with cWnd lesser than ssThresh"),
TestCase::QUICK);
}
};