-
Notifications
You must be signed in to change notification settings - Fork 0
/
validate.out
6628 lines (6520 loc) · 273 KB
/
validate.out
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(Validation can take 1-30 hours to run.)
Fri Feb 15 14:07:15 PST 2008
*** ./test-all-simple
Tests: tahoe1 tahoe1Bytes tahoe1RED tahoe1REDbytes tahoe2 tahoe3 tahoe3RED tahoe4 no_bug bug reno1 reno renoA reno2 reno3 reno4 reno4a reno5 reno5_nobug telnet delayed phase phase1 phase2 timers manyflows stats statsECN stats1 stats1Bytes stats1a stats1aBytes statsHeaders stats2 stats3 stats4 statsTFRC
Running test tahoe1:
../../ns test-suite-simple.tcl tahoe1 QUIET
Guide: Tahoe TCP with multiple packets dropped from a window of data.
True average queue: 0.425 time: 4.997
Test output agrees with reference output
Running test tahoe1Bytes:
../../ns test-suite-simple.tcl tahoe1Bytes QUIET
Guide: DropTail queue in bytes instead of packets.
True average queue: 425.245 (in bytes) time: 4.997
Test output agrees with reference output
Running test tahoe1RED:
../../ns test-suite-simple.tcl tahoe1RED QUIET
Guide: RED queue, configured for 5 packets instead of DropTail's 6 packets.
True average queue: 0.425 time: 4.997
Test output agrees with reference output
Running test tahoe1REDbytes:
../../ns test-suite-simple.tcl tahoe1REDbytes QUIET
Guide: RED queue in bytes.
True average queue: 425.245 (in bytes) time: 4.997
Test output agrees with reference output
Running test tahoe2:
../../ns test-suite-simple.tcl tahoe2 QUIET
Guide: Tahoe TCP with one packet dropped.
Test output agrees with reference output
Running test tahoe3:
../../ns test-suite-simple.tcl tahoe3 QUIET
Guide: Tahoe TCP, two packets dropped from a congestion window of 5 packets.
Test output agrees with reference output
Running test tahoe3RED:
../../ns test-suite-simple.tcl tahoe3RED QUIET
Guide: Tahoe TCP, two packets dropped, RED queue configured for 5 packets.
Test output agrees with reference output
Running test tahoe4:
../../ns test-suite-simple.tcl tahoe4 QUIET
Guide: Tahoe TCP, two connections with different round-trip times.
Test output agrees with reference output
Running test no_bug:
../../ns test-suite-simple.tcl no_bug QUIET
Guide: Tahoe TCP with TCP/bugFix_ set to true.
Test output agrees with reference output
Running test bug:
../../ns test-suite-simple.tcl bug QUIET
Guide: Tahoe TCP with TCP/bugFix_ set to false.
Test output agrees with reference output
Running test reno1:
../../ns test-suite-simple.tcl reno1 QUIET
Guide: Reno TCP, one packet dropped, Fast Recovery and Fast Retransmit
Test output agrees with reference output
Running test reno:
../../ns test-suite-simple.tcl reno QUIET
Guide: Reno TCP, limited by maximum congestion window maxcwnd_.
Test output agrees with reference output
Running test renoA:
../../ns test-suite-simple.tcl renoA QUIET
Guide: Reno TCP, one packet dropped, Fast Recovery and Fast Retransmit
Test output agrees with reference output
Running test reno2:
../../ns test-suite-simple.tcl reno2 QUIET
Guide: Reno TCP, multiple packets dropped, Retransmit Timeout.
Test output agrees with reference output
Running test reno3:
../../ns test-suite-simple.tcl reno3 QUIET
Guide: Reno TCP, two packets dropped from a congestion window of 5 packets.
Test output agrees with reference output
Running test reno4:
../../ns test-suite-simple.tcl reno4 QUIET
Guide: Reno TCP, two packets dropped, no Retransmit Timeout
Test output agrees with reference output
Running test reno4a:
../../ns test-suite-simple.tcl reno4a QUIET
Guide: Reno TCP, two packets dropped, Retransmit Timeout
Test output agrees with reference output
Running test reno5:
../../ns test-suite-simple.tcl reno5 QUIET
Guide: Reno TCP, TCP/bugFix_ set to false.
Test output agrees with reference output
Running test reno5_nobug:
../../ns test-suite-simple.tcl reno5_nobug QUIET
Guide: Reno TCP, TCP/bugFix_ set to true.
Test output agrees with reference output
Running test telnet:
../../ns test-suite-simple.tcl telnet QUIET
Guide: Telnet connections with two different packet generation processes.
Test output agrees with reference output
Running test delayed:
../../ns test-suite-simple.tcl delayed QUIET
Guide: TCP receiver with delayed acknowledgements.
Test output agrees with reference output
Running test phase:
../../ns test-suite-simple.tcl phase QUIET
Guide: Phase effects: connection 0 wins.
Test output agrees with reference output
Running test phase1:
../../ns test-suite-simple.tcl phase1 QUIET
Guide: Phase effects: connection 1 wins.
Test output agrees with reference output
Running test phase2:
../../ns test-suite-simple.tcl phase2 QUIET
Guide: Phase effects: TCP/overhead_ is used, and neither connection loses.
Test output agrees with reference output
Running test timers:
../../ns test-suite-simple.tcl timers QUIET
Test output agrees with reference output
Running test manyflows:
../../ns test-suite-simple.tcl manyflows QUIET
Guide: Using FTP commands to create many small flows.
Test output agrees with reference output
Running test stats:
../../ns test-suite-simple.tcl stats QUIET
Guide: TCP statistics, and per-flow and aggregate link statistics.
tcp0/window=30/packetSize=1000/bugFix=1
tcp1/window=30/packetSize=1000/bugFix=1
tcp0/time=0/cwnd=1.0000/ssthresh=30/ack=-1/rtt=0
tcp1/time=0/cwnd=1.0000/ssthresh=30/ack=-1/rtt=0
tcp0/time=5/cwnd=7.0000/ssthresh=7/ack=96/rtt=3
tcp1/time=5.0000099999999996/cwnd=2.0000/ssthresh=13/ack=26/rtt=6
tcp0/time=10/cwnd=11.4952/ssthresh=10/ack=328/rtt=3
tcp1/time=10.000019999999999/cwnd=2.0000/ssthresh=7/ack=87/rtt=7
tcp 0 highest_seqment_acked 336
tcp 0 data_bytes_sent 375000
tcp 0 most_recent_rtt 0.200
tcp 1 highest_seqment_acked 87
tcp 1 data_bytes_sent 108000
tcp 1 most_recent_rtt 0.700
fid: 0 per-link total_drops 13
fid: 0 per-link total_marks 0
fid: 0 per-link total_packets 360
fid: 0 per-link total_bytes 359040
fid: 1 per-link total_drops 6
fid: 1 per-link total_marks 0
fid: 1 per-link total_packets 103
fid: 1 per-link total_bytes 102040
aggregate per-link total_drops 19
aggregate per-link total_marks 0
aggregate per-link total_packets 463
Test output agrees with reference output
Running test statsECN:
../../ns test-suite-simple.tcl statsECN QUIET
Guide: Flow monitor statistics with ECN.
fid: 0 per-link total_drops 0
fid: 0 per-link total_marks 5
fid: 0 per-link total_packets 480
fid: 0 per-link total_bytes 479040
fid: 1 per-link total_drops 0
fid: 1 per-link total_marks 2
fid: 1 per-link total_packets 197
fid: 1 per-link total_bytes 196040
aggregate per-link total_drops 0
aggregate per-link total_marks 7
aggregate per-link total_packets 677
Test output agrees with reference output
Running test stats1:
../../ns test-suite-simple.tcl stats1 QUIET
Guide: FTP statistics on bytes produced, and queue statistics.
Should be: fid: 0 per-link total_bytes 940.
TCP packetSize 100
ftp 0 segments_produced 9 (using `FTP produce pktcnt')
ftp 1 bytes_produced 900 (using `FTP send nbytes')
tcp 0 highest_seqment_acked 9
tcp 0 data_bytes_sent 900
tcp 0 most_recent_rtt 0.200
tcp 1 highest_seqment_acked 9
tcp 1 data_bytes_sent 900
tcp 1 most_recent_rtt 0.600
fid: 0 per-link total_drops 0
fid: 0 per-link total_marks 0
fid: 0 per-link total_packets 10
fid: 0 per-link total_bytes 940
fid: 1 per-link total_drops 0
fid: 1 per-link total_marks 0
fid: 1 per-link total_packets 10
fid: 1 per-link total_bytes 940
aggregate per-link total_drops 0
aggregate per-link total_marks 0
aggregate per-link total_packets 20
True average queue: 0.004 time: 3.007
Test output agrees with reference output
Running test stats1Bytes:
../../ns test-suite-simple.tcl stats1Bytes QUIET
Guide: Queue statistics for a queue in bytes.
Should be: True average queue: 0.439 (in bytes)
TCP packetSize 100
ftp 0 segments_produced 9 (using `FTP produce pktcnt')
ftp 1 bytes_produced 900 (using `FTP send nbytes')
tcp 0 highest_seqment_acked 9
tcp 0 data_bytes_sent 900
tcp 0 most_recent_rtt 0.200
tcp 1 highest_seqment_acked 9
tcp 1 data_bytes_sent 900
tcp 1 most_recent_rtt 0.600
fid: 0 per-link total_drops 0
fid: 0 per-link total_marks 0
fid: 0 per-link total_packets 10
fid: 0 per-link total_bytes 940
fid: 1 per-link total_drops 0
fid: 1 per-link total_marks 0
fid: 1 per-link total_packets 10
fid: 1 per-link total_bytes 940
aggregate per-link total_drops 0
aggregate per-link total_marks 0
aggregate per-link total_packets 20
True average queue: 0.439 (in bytes) time: 3.007
Test output agrees with reference output
Running test stats1a:
../../ns test-suite-simple.tcl stats1a QUIET
Guide: Queue statistics for a RED queue.
Should be: True average queue: 0.004
TCP packetSize 100
ftp 0 segments_produced 9 (using `FTP produce pktcnt')
ftp 1 bytes_produced 900 (using `FTP send nbytes')
tcp 0 highest_seqment_acked 9
tcp 0 data_bytes_sent 900
tcp 0 most_recent_rtt 0.200
tcp 1 highest_seqment_acked 9
tcp 1 data_bytes_sent 900
tcp 1 most_recent_rtt 0.600
fid: 0 per-link total_drops 0
fid: 0 per-link total_marks 0
fid: 0 per-link total_packets 10
fid: 0 per-link total_bytes 940
fid: 1 per-link total_drops 0
fid: 1 per-link total_marks 0
fid: 1 per-link total_packets 10
fid: 1 per-link total_bytes 940
aggregate per-link total_drops 0
aggregate per-link total_marks 0
aggregate per-link total_packets 20
True average queue: 0.004 time: 3.007
Test output agrees with reference output
Running test stats1aBytes:
../../ns test-suite-simple.tcl stats1aBytes QUIET
Guide: Queue statistics for a RED queue in bytes.
Should be: True average queue: 0.439 (in bytes)
TCP packetSize 100
ftp 0 segments_produced 9 (using `FTP produce pktcnt')
ftp 1 bytes_produced 900 (using `FTP send nbytes')
tcp 0 highest_seqment_acked 9
tcp 0 data_bytes_sent 900
tcp 0 most_recent_rtt 0.200
tcp 1 highest_seqment_acked 9
tcp 1 data_bytes_sent 900
tcp 1 most_recent_rtt 0.600
fid: 0 per-link total_drops 0
fid: 0 per-link total_marks 0
fid: 0 per-link total_packets 10
fid: 0 per-link total_bytes 940
fid: 1 per-link total_drops 0
fid: 1 per-link total_marks 0
fid: 1 per-link total_packets 10
fid: 1 per-link total_bytes 940
aggregate per-link total_drops 0
aggregate per-link total_marks 0
aggregate per-link total_packets 20
True average queue: 0.439 (in bytes) time: 3.007
Test output agrees with reference output
Running test statsHeaders:
../../ns test-suite-simple.tcl statsHeaders QUIET
Guide: FTP and packet statistics for TCP with correct accounting for headers.
Should be: fid: 0 per-link total_bytes 1300
TCP packetSize 100
ftp 0 segments_produced 9 (using `FTP produce pktcnt')
ftp 1 bytes_produced 900 (using `FTP send nbytes')
tcp 0 highest_seqment_acked 9
tcp 0 data_bytes_sent 900
tcp 0 most_recent_rtt 0.200
tcp 1 highest_seqment_acked 9
tcp 1 data_bytes_sent 900
tcp 1 most_recent_rtt 0.600
fid: 0 per-link total_drops 0
fid: 0 per-link total_marks 0
fid: 0 per-link total_packets 10
fid: 0 per-link total_bytes 1300
fid: 1 per-link total_drops 0
fid: 1 per-link total_marks 0
fid: 1 per-link total_packets 10
fid: 1 per-link total_bytes 1300
aggregate per-link total_drops 0
aggregate per-link total_marks 0
aggregate per-link total_packets 20
True average queue: 0.006 time: 3.009
Test output agrees with reference output
Running test stats2:
../../ns test-suite-simple.tcl stats2 QUIET
Guide: Queue statistics for the true average queue size.
Should be: True average queue: 8.632
True average queue: 8.422 time: 9.999
Test output agrees with reference output
Running test stats3:
../../ns test-suite-simple.tcl stats3 QUIET
Guide: Printing RTT and Seqno statistics.
Distribution of RTTs, 10 ms bins, time 1.10
0 to 10 ms: frac 0.004 num 2 time 1.10
20 to 30 ms: frac 0.404 num 206 time 1.10
30 to 40 ms: frac 0.408 num 208 time 1.10
80 to 90 ms: frac 0.125 num 64 time 1.10
90 to 100 ms: frac 0.059 num 30 time 1.10
Distribution of Seqnos, 100 seqnos per bin, time 1.10
0 to 99 seqnos: frac 0.382 num 195 time 1.10
100 to 199 seqnos: frac 0.196 num 100 time 1.10
200 to 299 seqnos: frac 0.196 num 100 time 1.10
300 to 399 seqnos: frac 0.196 num 100 time 1.10
400 to 499 seqnos: frac 0.029 num 15 time 1.10
Test output agrees with reference output
Running test stats4:
../../ns test-suite-simple.tcl stats4 QUIET
Guide: Printing peak rate statistics.
time: 0.50 fid: 0 new_bytes 174040
time: 0.50 fid: 1 new_bytes 24040
time: 0.60 fid: 0 new_bytes 40000
time: 0.60 fid: 1 new_bytes 10000
time: 0.70 fid: 0 new_bytes 40000
time: 0.70 fid: 1 new_bytes 10000
time: 0.80 fid: 0 new_bytes 40000
time: 0.80 fid: 1 new_bytes 14000
time: 0.90 fid: 0 new_bytes 40000
time: 0.90 fid: 1 new_bytes 16000
time: 1.00 fid: 0 new_bytes 40000
time: 1.00 fid: 1 new_bytes 10000
time: 1.10 fid: 0 new_bytes 40000
time: 1.10 fid: 1 new_bytes 10000
Test output agrees with reference output
Running test statsTFRC:
../../ns test-suite-simple.tcl statsTFRC QUIET
Guide: TFRC statistics, and per-flow and aggregate link statistics.
tfrc 0 data_pkts_sent 255
tfrc 1 data_pkts_sent 29
fid: 0 per-link total_drops 16
fid: 0 per-link total_marks 0
fid: 0 per-link total_packets 239
fid: 0 per-link total_bytes 239000
fid: 1 per-link total_drops 1
fid: 1 per-link total_marks 0
fid: 1 per-link total_packets 26
fid: 1 per-link total_bytes 26000
aggregate per-link total_drops 17
aggregate per-link total_marks 0
aggregate per-link total_packets 265
Test output agrees with reference output
All test output agrees with reference output.
Fri Feb 15 14:08:18 PST 2008
Fri Feb 15 14:08:20 PST 2008
*** ./test-all-tcp
Tests: ecn timers timersA timersAfix timersA1 timersA2 timersA3 timers1 timers2 timers3 timers4 timers5 timers_backoffs stats1 quiescent_100ms quiescentB quiescentB_qoption underutilized_100ms underutilized_100ms_control underutilized_100ms_control_Q underutilized_100ms_Q underutilized_100ms_control_Reno underutilized_100ms_control_Newreno underutilized_100ms_control_Sack quiescent_100ms_fine quiescent_100ms_coarse quiescent_1ms_fine quiescent_1ms_coarse quiescent_500ms_fine quiescent_500ms_coarse dialup dialup1
Running test ecn:
../../ns test-suite-tcp.tcl ecn QUIET
Guide: One connection with ECN, and one without ECN.
Test output agrees with reference output
Running test timers:
../../ns test-suite-tcp.tcl timers QUIET
Guide: TCP's retransmit timers when first and second packets are dropped.
Test output agrees with reference output
Running test timersA:
../../ns test-suite-tcp.tcl timersA QUIET
Guide: TCP's retransmit timers when the third packet is droopped.
Test output agrees with reference output
Running test timersAfix:
../../ns test-suite-tcp.tcl timersAfix QUIET
Guide: Agent/TCP, timerfix_ set, for updating timer *after* updating the RTT.
Test output agrees with reference output
Running test timersA1:
../../ns test-suite-tcp.tcl timersA1 QUIET
Guide: Agent/TCP, rttvar_exp_ set to 3 instead of 2.
Test output agrees with reference output
Running test timersA2:
../../ns test-suite-tcp.tcl timersA2 QUIET
Guide: Agent/TCP, tcpTick_ set to 0.001
Test output agrees with reference output
Running test timersA3:
../../ns test-suite-tcp.tcl timersA3 QUIET
Guide: Agent/TCP, T_SRTT_BITS set to 5 instead of 3
Test output agrees with reference output
Running test timers1:
../../ns test-suite-tcp.tcl timers1 QUIET
Guide: tcpTick_ set to default of 0.1
Test output agrees with reference output
Running test timers2:
../../ns test-suite-tcp.tcl timers2 QUIET
Guide: tcpTick_ set to 0.5
Test output agrees with reference output
Running test timers3:
../../ns test-suite-tcp.tcl timers3 QUIET
Guide: tcpTick_ set to 0.001
Test output agrees with reference output
Running test timers4:
../../ns test-suite-tcp.tcl timers4 QUIET
Guide: With timers5, shows that estimated RTT updated only once per RTT.
Test output agrees with reference output
Running test timers5:
../../ns test-suite-tcp.tcl timers5 QUIET
Guide: With timers4, shows that estimated RTT updated only once per RTT.
Test output agrees with reference output
Running test timers_backoffs:
../../ns test-suite-tcp.tcl timers_backoffs QUIET
Guide: TCP's retransmit timer, max RTO of 60 seconds.
Test output agrees with reference output
Running test stats1:
../../ns test-suite-tcp.tcl stats1 QUIET
Guide: TCP statistics on the number of retransmit timeouts.
tcp1/window=30/packetSize=1000/bugFix=1
tcp2/window=3/packetSize=1000/bugFix=1
tcp1/time=0/cwnd=1.0000/ssthresh=30/ack=-1/rtt=0
tcp2/time=0/cwnd=1.0000/ssthresh=3/ack=-1/rtt=0
tcp: 1 time: 10.000
total_data_packets_sent: 538 data_bytes_sent: 538000
packets_resent: 10 bytes_resent: 10000
ack_packets_received: 504
retransmit_timeouts: 1
tcp: 2 time: 10.000
total_data_packets_sent: 42 data_bytes_sent: 42000
packets_resent: 0 bytes_resent: 0
ack_packets_received: 39
retransmit_timeouts: 0
tcp1/time=10/cwnd=29.7397/ssthresh=7/ack=498/rtt=3
tcp2/time=10/cwnd=9.1730/ssthresh=3/ack=38/rtt=7
Test output agrees with reference output
Running test quiescent_100ms:
../../ns test-suite-tcp.tcl quiescent_100ms QUIET
Guide: Tahoe TCP after a quiescent period.
Test output agrees with reference output
Running test quiescentB:
../../ns test-suite-tcp.tcl quiescentB QUIET
Guide: Tahoe TCP entering a quiescent period with a smaller cwnd.
Test output agrees with reference output
Running test quiescentB_qoption:
../../ns test-suite-tcp.tcl quiescentB_qoption QUIET
Guide: Tahoe TCP entering a quiescent period, TCP quiescence option set.
Test output agrees with reference output
Running test underutilized_100ms:
../../ns test-suite-tcp.tcl underutilized_100ms QUIET
Guide: Tahoe TCP, underutilized, TCP quiescence option not set.
Test output agrees with reference output
Running test underutilized_100ms_control:
../../ns test-suite-tcp.tcl underutilized_100ms_control QUIET
Guide: Tahoe TCP, underutilized, TCP quiescence option not set,
control_increase set.
Test output agrees with reference output
Running test underutilized_100ms_control_Q:
../../ns test-suite-tcp.tcl underutilized_100ms_control_Q QUIET
Guide: Tahoe TCP, underutilized, TCP quiescence option set,
control_increase set.
Test output agrees with reference output
Running test underutilized_100ms_Q:
../../ns test-suite-tcp.tcl underutilized_100ms_Q QUIET
Guide: Tahoe TCP, underutilized, TCP quiescence option set,
control_increase not set.
Test output agrees with reference output
Running test underutilized_100ms_control_Reno:
../../ns test-suite-tcp.tcl underutilized_100ms_control_Reno QUIET
Guide: Reno TCP, underutilized, TCP quiescence option not set,
control_increase set.
Test output agrees with reference output
Running test underutilized_100ms_control_Newreno:
../../ns test-suite-tcp.tcl underutilized_100ms_control_Newreno QUIET
Guide: NewReno TCP, underutilized, TCP quiescence option not set,
control_increase set.
Test output agrees with reference output
Running test underutilized_100ms_control_Sack:
../../ns test-suite-tcp.tcl underutilized_100ms_control_Sack QUIET
Guide: Sack TCP, underutilized, TCP quiescence option not set,
control_increase set.
Test output agrees with reference output
Running test quiescent_100ms_fine:
../../ns test-suite-tcp.tcl quiescent_100ms_fine QUIET
Guide: Tahoe TCP after a quiescent period, fine-grained timer.
Test output agrees with reference output
Running test quiescent_100ms_coarse:
../../ns test-suite-tcp.tcl quiescent_100ms_coarse QUIET
Guide: Tahoe TCP after a quiescent period, coarse-grained timer.
Test output agrees with reference output
Running test quiescent_1ms_fine:
../../ns test-suite-tcp.tcl quiescent_1ms_fine QUIET
Guide: Tahoe TCP after a quiescent period, fine-grained timer, tcpTick_ 0.001.
Test output agrees with reference output
Running test quiescent_1ms_coarse:
../../ns test-suite-tcp.tcl quiescent_1ms_coarse QUIET
Guide: Tahoe TCP after a quiescent period, coarse-grained timer, tcpTick_ 0.001.
Test output agrees with reference output
Running test quiescent_500ms_fine:
../../ns test-suite-tcp.tcl quiescent_500ms_fine QUIET
Guide: Tahoe TCP after a quiescent period, fine-grained timer, tcpTick_ 0.5.
Test output agrees with reference output
Running test quiescent_500ms_coarse:
../../ns test-suite-tcp.tcl quiescent_500ms_coarse QUIET
Guide: Tahoe TCP after a quiescent period, coarse-grained timer, tcpTick_ 0.5.
Test output agrees with reference output
Running test dialup:
../../ns test-suite-tcp.tcl dialup QUIET
Guide: 1500-byte packets on a 9.6 Kbps link
Test output agrees with reference output
Running test dialup1:
../../ns test-suite-tcp.tcl dialup1 QUIET
Guide: 1500-byte packets on a 9.6 Kbps link, rfc2988_ false
Test output agrees with reference output
All test output agrees with reference output.
Fri Feb 15 14:09:28 PST 2008
Fri Feb 15 14:09:30 PST 2008
*** ./test-all-testReno
Tests: Tahoe_TCP Tahoe_TCP_without_Fast_Retransmit Reno_TCP NewReno_TCP Sack_TCP Tahoe_TCP2 Tahoe_TCP2_without_Fast_Retransmit Reno_TCP2 NewReno_TCP2 Sack_TCP2
Running test Tahoe_TCP:
../../ns test-suite-testReno.tcl Tahoe_TCP QUIET
Guide: Tahoe TCP, two dropped packets.
Test output agrees with reference output
Running test Tahoe_TCP_without_Fast_Retransmit:
../../ns test-suite-testReno.tcl Tahoe_TCP_without_Fast_Retransmit QUIET
Guide: Tahoe TCP without Fast Retransmit, two dropped packets.
Test output agrees with reference output
Running test Reno_TCP:
../../ns test-suite-testReno.tcl Reno_TCP QUIET
Guide: Reno TCP, two dropped packets.
Test output agrees with reference output
Running test NewReno_TCP:
../../ns test-suite-testReno.tcl NewReno_TCP QUIET
Guide: NewReno TCP, two dropped packets.
Test output agrees with reference output
Running test Sack_TCP:
../../ns test-suite-testReno.tcl Sack_TCP QUIET
Guide: Sack TCP, two dropped packets.
Test output agrees with reference output
Running test Tahoe_TCP2:
../../ns test-suite-testReno.tcl Tahoe_TCP2 QUIET
Guide: Tahoe TCP, one dropped packet.
Test output agrees with reference output
Running test Tahoe_TCP2_without_Fast_Retransmit:
../../ns test-suite-testReno.tcl Tahoe_TCP2_without_Fast_Retransmit QUIET
Guide: Tahoe TCP without Fast Retransmit, one dropped packet.
Test output agrees with reference output
Running test Reno_TCP2:
../../ns test-suite-testReno.tcl Reno_TCP2 QUIET
Guide: Reno TCP, one dropped packet.
Test output agrees with reference output
Running test NewReno_TCP2:
../../ns test-suite-testReno.tcl NewReno_TCP2 QUIET
Guide: NewReno TCP, one dropped packet.
Test output agrees with reference output
Running test Sack_TCP2:
../../ns test-suite-testReno.tcl Sack_TCP2 QUIET
Guide: Sack TCP, one dropped packet.
Test output agrees with reference output
All test output agrees with reference output.
Fri Feb 15 14:09:46 PST 2008
Fri Feb 15 14:09:48 PST 2008
*** ./test-all-newreno
Tests: reno reno_noLT newreno newreno_noLT newreno_B newreno_B_noLT reno1 newreno1 newreno1_BF newreno1_A newreno1_A_noLT newreno1_A_BF newreno1_A_BF_LC newreno1_B0 newreno1_B newreno1_B_BF newreno1_B_BF_LC newreno1_B_noLT newreno1A_A newreno1A_A_BF newreno1A_A_BF_LC newreno1A_A_noLT reno2 reno2_noLT reno2_bugfix reno2_bugfix_noLT newreno2_A newreno2_A_noLT newreno2_A_bugfix newreno2_A_bugfix_LC newreno2_B newreno2_B_noLT newreno2_B_bugfix newreno2_B_bugfix_LC newreno5 sack5 newreno5_LC newreno5_noLT newreno5_noLT_LC newreno5_noBF newreno5_noLT_noBF reno5 reno5_noBF reno5_noLT_noBF reno5a reno5a_noLT_noBF newreno6 newreno_rto_loss newreno_rto_loss_ack newreno_rto_loss_ts newreno_rto_loss_tsh newreno_rto_dup newreno_rto_dup_ack newreno_rto_loss_ackf newreno_rto_dup_ts newreno_rto_dup_tsh impatient1 slow1 impatient2 slow2 impatient3 slow3 impatient4 slow4
Running test reno:
../../ns test-suite-newreno.tcl reno QUIET
Guide: Reno, with Limited Transmit, without bugfix.
Test output agrees with reference output
Running test reno_noLT:
../../ns test-suite-newreno.tcl reno_noLT QUIET
Guide: Reno, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno:
../../ns test-suite-newreno.tcl newreno QUIET
Guide: NewReno, with Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno_noLT:
../../ns test-suite-newreno.tcl newreno_noLT QUIET
Guide: NewReno, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno_B:
../../ns test-suite-newreno.tcl newreno_B QUIET
Guide: NewReno, with Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno_B_noLT:
../../ns test-suite-newreno.tcl newreno_B_noLT QUIET
Guide: NewReno, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test reno1:
../../ns test-suite-newreno.tcl reno1 QUIET
Guide: Reno, #1, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno1:
../../ns test-suite-newreno.tcl newreno1 QUIET
Guide: NewReno, #1, with Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno1_BF:
../../ns test-suite-newreno.tcl newreno1_BF QUIET
Guide: NewReno, #1, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno1_A:
../../ns test-suite-newreno.tcl newreno1_A QUIET
Guide: NewReno, #1A, with Limited Transmit, without bugfix. Bad behavior.
Test output agrees with reference output
Running test newreno1_A_noLT:
../../ns test-suite-newreno.tcl newreno1_A_noLT QUIET
Guide: NewReno, #1A, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno1_A_BF:
../../ns test-suite-newreno.tcl newreno1_A_BF QUIET
Guide: NewReno, #1A, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno1_A_BF_LC:
../../ns test-suite-newreno.tcl newreno1_A_BF_LC QUIET
Guide: NewReno, #1A, with Limited Transmit, with Less Careful bugfix.
Test output agrees with reference output
Running test newreno1_B0:
../../ns test-suite-newreno.tcl newreno1_B0 QUIET
Guide: NewReno, #1B0, with Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno1_B:
../../ns test-suite-newreno.tcl newreno1_B QUIET
Guide: NewReno, #1B, with Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno1_B_BF:
../../ns test-suite-newreno.tcl newreno1_B_BF QUIET
Guide: NewReno, #1B, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno1_B_BF_LC:
../../ns test-suite-newreno.tcl newreno1_B_BF_LC QUIET
Guide: NewReno, #1B, with Limited Transmit, with Less Careful bugfix.
Test output agrees with reference output
Running test newreno1_B_noLT:
../../ns test-suite-newreno.tcl newreno1_B_noLT QUIET
Guide: NewReno, #1B, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno1A_A:
../../ns test-suite-newreno.tcl newreno1A_A QUIET
Guide: NewReno, #1A-A, with Limited Transmit, without bugfix. Bad behavior.
Test output agrees with reference output
Running test newreno1A_A_BF:
../../ns test-suite-newreno.tcl newreno1A_A_BF QUIET
Guide: NewReno, #1A-A, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno1A_A_BF_LC:
../../ns test-suite-newreno.tcl newreno1A_A_BF_LC QUIET
Guide: NewReno, #1A-A, with Limited Transmit, with Less Careful bugfix.
Test output agrees with reference output
Running test newreno1A_A_noLT:
../../ns test-suite-newreno.tcl newreno1A_A_noLT QUIET
Guide: NewReno, #1A-A, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test reno2:
../../ns test-suite-newreno.tcl reno2 QUIET
Guide: NewReno, with Limited Transmit, without bugfix.
Test output agrees with reference output
Running test reno2_noLT:
../../ns test-suite-newreno.tcl reno2_noLT QUIET
Guide: NewReno, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test reno2_bugfix:
../../ns test-suite-newreno.tcl reno2_bugfix QUIET
Guide: NewReno, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test reno2_bugfix_noLT:
../../ns test-suite-newreno.tcl reno2_bugfix_noLT QUIET
Guide: NewReno, without Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno2_A:
../../ns test-suite-newreno.tcl newreno2_A QUIET
Guide: NewReno, #2A, with Limited Transmit, without bugfix. Bad behavior.
Test output agrees with reference output
Running test newreno2_A_noLT:
../../ns test-suite-newreno.tcl newreno2_A_noLT QUIET
Guide: NewReno, #2A, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno2_A_bugfix:
../../ns test-suite-newreno.tcl newreno2_A_bugfix QUIET
Guide: NewReno, #2A, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno2_A_bugfix_LC:
../../ns test-suite-newreno.tcl newreno2_A_bugfix_LC QUIET
Guide: NewReno, #2A, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno2_B:
../../ns test-suite-newreno.tcl newreno2_B QUIET
Guide: NewReno, #2B, with Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno2_B_noLT:
../../ns test-suite-newreno.tcl newreno2_B_noLT QUIET
Guide: NewReno, #2B, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno2_B_bugfix:
../../ns test-suite-newreno.tcl newreno2_B_bugfix QUIET
Guide: NewReno, #2B, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno2_B_bugfix_LC:
../../ns test-suite-newreno.tcl newreno2_B_bugfix_LC QUIET
Guide: NewReno, #2B, with Limited Transmit, with Less Careful bugfix.
Test output agrees with reference output
Running test newreno5:
../../ns test-suite-newreno.tcl newreno5 QUIET
Guide: NewReno #5, reordering, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test sack5:
../../ns test-suite-newreno.tcl sack5 QUIET
Guide: Sack #5, reordering, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno5_LC:
../../ns test-suite-newreno.tcl newreno5_LC QUIET
Guide: NewReno #5, reordering, with Limited Transmit, with Less Care. bugfix.
Test output agrees with reference output
Running test newreno5_noLT:
../../ns test-suite-newreno.tcl newreno5_noLT QUIET
Guide: NewReno #5, reordering, without Limited Transmit, with bugfix.
Test output agrees with reference output
Running test newreno5_noLT_LC:
../../ns test-suite-newreno.tcl newreno5_noLT_LC QUIET
Guide: NewReno #5, reordering, without Lim. Transmit, with Less Care. bugfix.
Test output agrees with reference output
Running test newreno5_noBF:
../../ns test-suite-newreno.tcl newreno5_noBF QUIET
Guide: NewReno #5, reordering, with Limited Transmit, without bugfix. Bad.
Test output agrees with reference output
Running test newreno5_noLT_noBF:
../../ns test-suite-newreno.tcl newreno5_noLT_noBF QUIET
Guide: NewReno #5, reordering, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test reno5:
../../ns test-suite-newreno.tcl reno5 QUIET
Guide: Reno #5, reordering, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test reno5_noBF:
../../ns test-suite-newreno.tcl reno5_noBF QUIET
Guide: Reno #5, reordering, with Limited Transmit, without bugfix.
Test output agrees with reference output
Running test reno5_noLT_noBF:
../../ns test-suite-newreno.tcl reno5_noLT_noBF QUIET
Guide: Reno #5, reordering, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test reno5a:
../../ns test-suite-newreno.tcl reno5a QUIET
Guide: Reno #5, reordering, with Limited Transmit, with bugfix.
Test output agrees with reference output
Running test reno5a_noLT_noBF:
../../ns test-suite-newreno.tcl reno5a_noLT_noBF QUIET
Guide: Reno #5a, reordering, without Limited Transmit, without bugfix.
Test output agrees with reference output
Running test newreno6:
../../ns test-suite-newreno.tcl newreno6 QUIET
Guide: NewReno, a new packet transmitted after FR is dropped.
Test output agrees with reference output
Running test newreno_rto_loss:
../../ns test-suite-newreno.tcl newreno_rto_loss QUIET
Guide: NewReno after timeout, lost packet.
Test output agrees with reference output
Running test newreno_rto_loss_ack:
../../ns test-suite-newreno.tcl newreno_rto_loss_ack QUIET
Guide: NewReno after timeout, lost packet, ACK heuristic.
Test output agrees with reference output
Running test newreno_rto_loss_ts:
../../ns test-suite-newreno.tcl newreno_rto_loss_ts QUIET
Guide: NewReno after timeout, lost packet, timestamps.
Test output agrees with reference output
Running test newreno_rto_loss_tsh:
../../ns test-suite-newreno.tcl newreno_rto_loss_tsh QUIET
Guide: NewReno after timeout, lost packet, timestamp heuristic.
Test output agrees with reference output
Running test newreno_rto_dup:
../../ns test-suite-newreno.tcl newreno_rto_dup QUIET
Guide: NewReno after timeout, false dupacks
Test output agrees with reference output
Running test newreno_rto_dup_ack:
../../ns test-suite-newreno.tcl newreno_rto_dup_ack QUIET
Guide: NewReno after timeout, false dupacks, ACK heuristic
Test output agrees with reference output
Running test newreno_rto_loss_ackf:
../../ns test-suite-newreno.tcl newreno_rto_loss_ackf QUIET
Guide: NewReno after timeout, lost packet and ACKs, ACK heuristic fails.
Test output agrees with reference output
Running test newreno_rto_dup_ts:
../../ns test-suite-newreno.tcl newreno_rto_dup_ts QUIET
Guide: NewReno after timeout, false dupacks, timestamps.
Test output agrees with reference output
Running test newreno_rto_dup_tsh:
../../ns test-suite-newreno.tcl newreno_rto_dup_tsh QUIET
Guide: NewReno after timeout, false dupacks, timestamp heuristic.
Test output agrees with reference output
Running test impatient1:
../../ns test-suite-newreno.tcl impatient1 QUIET
Guide: NewReno, Impatient.
Test output agrees with reference output
Running test slow1:
../../ns test-suite-newreno.tcl slow1 QUIET
Guide: NewReno, Slow-but-Steady. Impatient is better.
Test output agrees with reference output
Running test impatient2:
../../ns test-suite-newreno.tcl impatient2 QUIET
Guide: NewReno, Impatient. Slow-but-Steady is better.
Test output agrees with reference output
Running test slow2:
../../ns test-suite-newreno.tcl slow2 QUIET
Guide: NewReno, Slow-but-Steady.
Test output agrees with reference output
Running test impatient3:
../../ns test-suite-newreno.tcl impatient3 QUIET
Guide: NewReno, Impatient. Slow-but-Steady is better.
Test output agrees with reference output
Running test slow3:
../../ns test-suite-newreno.tcl slow3 QUIET
Guide: NewReno, Slow-but-Steady.
Test output agrees with reference output
Running test impatient4:
../../ns test-suite-newreno.tcl impatient4 QUIET
Guide: NewReno, Impatient.
Test output agrees with reference output
Running test slow4:
../../ns test-suite-newreno.tcl slow4 QUIET
Guide: NewReno, Slow-but-Steady. Impatient is better.
Test output agrees with reference output
All test output agrees with reference output.
Fri Feb 15 14:11:49 PST 2008
Fri Feb 15 14:11:51 PST 2008
*** ./test-all-sack
Tests: sack1 sack1z sack1a sack1aa sack1b sack1c sack3 sack5 sack5a sackB2 sackB4 sackB4a FalsePipe FalsePipe1 sack_dupacks sack_finiteflow sack_dupacks1
Running test sack1:
../../ns test-suite-sack.tcl sack1 QUIET
Guide: SACK TCP, single packet drop
Test output agrees with reference output
Running test sack1z:
../../ns test-suite-sack.tcl sack1z QUIET
Guide: SACK TCP, single packet drop, with maxburst
Test output agrees with reference output
Running test sack1a:
../../ns test-suite-sack.tcl sack1a QUIET
Guide: SACK TCP, three packet drops
Test output agrees with reference output
Running test sack1aa:
../../ns test-suite-sack.tcl sack1aa QUIET
Guide: SACK TCP, three packet drops, with maxburst
Test output agrees with reference output
Running test sack1b:
../../ns test-suite-sack.tcl sack1b QUIET
Guide: SACK TCP, many packet drops, window=26
Test output agrees with reference output
Running test sack1c:
../../ns test-suite-sack.tcl sack1c QUIET
Guide: SACK TCP, many packet drops, window=27
Test output agrees with reference output
Running test sack3:
../../ns test-suite-sack.tcl sack3 QUIET
Guide: SACK TCP, drops from a small window
Test output agrees with reference output
Running test sack5:
../../ns test-suite-sack.tcl sack5 QUIET
Guide: SACK TCP, many drops, without maxburst
Test output agrees with reference output
Running test sack5a:
../../ns test-suite-sack.tcl sack5a QUIET
Guide: SACK TCP, many drops, with maxburst
Test output agrees with reference output
Running test sackB2:
../../ns test-suite-sack.tcl sackB2 QUIET
Guide: SACK TCP, a connection with a long recovery
Test output agrees with reference output
Running test sackB4:
../../ns test-suite-sack.tcl sackB4 QUIET
Guide: SACK TCP, two packets dropped
Test output agrees with reference output
Running test sackB4a:
../../ns test-suite-sack.tcl sackB4a QUIET
Guide: SACK TCP, two packets dropped, with maxburst
Test output agrees with reference output
Running test FalsePipe:
../../ns test-suite-sack.tcl FalsePipe QUIET
Guide: SACK TCP, four packets delayed
Test output agrees with reference output
Running test FalsePipe1:
../../ns test-suite-sack.tcl FalsePipe1 QUIET
Guide: SACK TCP, one packet dropped and four packets delayed
Test output agrees with reference output
Running test sack_dupacks:
../../ns test-suite-sack.tcl sack_dupacks QUIET
Guide: SACK TCP, Fast Recovery with standard numdupacks
Test output agrees with reference output
Running test sack_finiteflow:
../../ns test-suite-sack.tcl sack_finiteflow QUIET
Guide: SACK TCP, Fast Recovery with last packets in a finite flow
Test output agrees with reference output
Running test sack_dupacks1:
../../ns test-suite-sack.tcl sack_dupacks1 QUIET
Guide: SACK TCP, Fast Recovery with modified numdupacks
Test output agrees with reference output
All test output agrees with reference output.
Fri Feb 15 14:12:25 PST 2008
Fri Feb 15 14:12:27 PST 2008
*** ./test-all-tcpOptions
Tests: onedrop_tahoe onedrop_numdup4_tahoe onedrop_tahoe_full onedrop_numdup4_tahoe_full onedrop_reno onedrop_numdup4_reno onedrop_reno_full onedrop_numdup4_reno_full onedrop_newreno onedrop_numdup4_newreno onedrop_newreno_full onedrop_numdup4_newreno_full onedrop_sack onedrop_numdup4_sack onedrop_sack_full onedrop_numdup4_sack_full maxburst_tahoe maxburst_tahoe1 maxburst_reno maxburst_reno1 maxburst_newreno maxburst_newreno1 maxburst_sack maxburst_sack1 timeouts_tahoe timeouts_tahoe1 timeouts_tahoe2 timeouts_tahoe3 timeouts_reno timeouts_reno_noexitFR timeouts_reno1 timeouts_reno2 timeouts_reno3 timeouts_newreno timeouts_newreno_noexitFR timeouts_newreno1 timeouts_newreno2 timeouts_newreno3 timeouts_sack timeouts_sack1 timeouts_sack2 timeouts_sack3 timeoutsA_tahoe timeoutsA_tahoe1
Running test onedrop_tahoe:
../../ns test-suite-tcpOptions.tcl onedrop_tahoe QUIET
Guide: Tahoe TCP, numdupacks set to 3.
Test output agrees with reference output
Running test onedrop_numdup4_tahoe:
../../ns test-suite-tcpOptions.tcl onedrop_numdup4_tahoe QUIET
Guide: Tahoe TCP, numdupacks set to 4.
Test output agrees with reference output
Running test onedrop_tahoe_full:
../../ns test-suite-tcpOptions.tcl onedrop_tahoe_full QUIET
Guide: Tahoe Full TCP, numdupacks set to 3.
Test output agrees with reference output
Running test onedrop_numdup4_tahoe_full:
../../ns test-suite-tcpOptions.tcl onedrop_numdup4_tahoe_full QUIET
Guide: Tahoe Full TCP, numdupacks set to 4.
Test output agrees with reference output
Running test onedrop_reno:
../../ns test-suite-tcpOptions.tcl onedrop_reno QUIET
Guide: Reno TCP, numdupacks set to 3.
Test output agrees with reference output
Running test onedrop_numdup4_reno:
../../ns test-suite-tcpOptions.tcl onedrop_numdup4_reno QUIET
Guide: Reno TCP, numdupacks set to 4.
Test output agrees with reference output
Running test onedrop_reno_full:
../../ns test-suite-tcpOptions.tcl onedrop_reno_full QUIET
Guide: Reno Full TCP, numdupacks set to 3.
Test output agrees with reference output
Running test onedrop_numdup4_reno_full:
../../ns test-suite-tcpOptions.tcl onedrop_numdup4_reno_full QUIET
Guide: Reno Full TCP, numdupacks set to 4.
Test output agrees with reference output
Running test onedrop_newreno:
../../ns test-suite-tcpOptions.tcl onedrop_newreno QUIET
Guide: NewReno TCP, numdupacks set to 3.
Test output agrees with reference output
Running test onedrop_numdup4_newreno:
../../ns test-suite-tcpOptions.tcl onedrop_numdup4_newreno QUIET
Guide: NewReno TCP, numdupacks set to 4.
Test output agrees with reference output
Running test onedrop_newreno_full:
../../ns test-suite-tcpOptions.tcl onedrop_newreno_full QUIET
Guide: NewReno Full TCP, numdupacks set to 3.
Test output agrees with reference output
Running test onedrop_numdup4_newreno_full:
../../ns test-suite-tcpOptions.tcl onedrop_numdup4_newreno_full QUIET
Guide: NewReno Full TCP, numdupacks set to 4.
Test output agrees with reference output
Running test onedrop_sack:
../../ns test-suite-tcpOptions.tcl onedrop_sack QUIET
Guide: Sack TCP, numdupacks set to 3.
Test output agrees with reference output
Running test onedrop_numdup4_sack:
../../ns test-suite-tcpOptions.tcl onedrop_numdup4_sack QUIET
Guide: Sack TCP, numdupacks set to 4.
Test output agrees with reference output
Running test onedrop_sack_full:
../../ns test-suite-tcpOptions.tcl onedrop_sack_full QUIET
Guide: Sack Full TCP, numdupacks set to 3.
Test output agrees with reference output
Running test onedrop_numdup4_sack_full:
../../ns test-suite-tcpOptions.tcl onedrop_numdup4_sack_full QUIET
Guide: Sack Full TCP, numdupacks set to 4.
Test output agrees with reference output
Running test maxburst_tahoe:
../../ns test-suite-tcpOptions.tcl maxburst_tahoe QUIET
Guide: Tahoe TCP, maxburst set to 3.
Test output agrees with reference output
Running test maxburst_tahoe1:
../../ns test-suite-tcpOptions.tcl maxburst_tahoe1 QUIET
Guide: Tahoe TCP, maxburst set to 3, aggressive_maxburst_.
Test output agrees with reference output
Running test maxburst_reno:
../../ns test-suite-tcpOptions.tcl maxburst_reno QUIET
Guide: Tahoe TCP, maxburst set to 3.
Test output agrees with reference output
Running test maxburst_reno1:
../../ns test-suite-tcpOptions.tcl maxburst_reno1 QUIET
Guide: Reno TCP, maxburst set to 3, aggressive_maxburst_.
Test output agrees with reference output
Running test maxburst_newreno:
../../ns test-suite-tcpOptions.tcl maxburst_newreno QUIET
Guide: NewReno TCP, maxburst set to 3.
Test output agrees with reference output
Running test maxburst_newreno1:
../../ns test-suite-tcpOptions.tcl maxburst_newreno1 QUIET
Guide: NewReno TCP, maxburst set to 3, aggressive_maxburst_.
Test output agrees with reference output
Running test maxburst_sack:
../../ns test-suite-tcpOptions.tcl maxburst_sack QUIET
Guide: Sack TCP, maxburst set to 3.
Test output agrees with reference output
Running test maxburst_sack1:
../../ns test-suite-tcpOptions.tcl maxburst_sack1 QUIET
Guide: Sack TCP, maxburst set to 3, aggressive_maxburst_.
Test output agrees with reference output
Running test timeouts_tahoe:
../../ns test-suite-tcpOptions.tcl timeouts_tahoe QUIET
Guide: Tahoe, timeouts, bugfix
Test output agrees with reference output
Running test timeouts_tahoe1:
../../ns test-suite-tcpOptions.tcl timeouts_tahoe1 QUIET
Guide: Tahoe, timeouts, better without bugfix
Test output agrees with reference output
Running test timeouts_tahoe2:
../../ns test-suite-tcpOptions.tcl timeouts_tahoe2 QUIET
Guide: Tahoe, timeouts, bugfix, with timestamps, new version
Test output agrees with reference output
Running test timeouts_tahoe3:
../../ns test-suite-tcpOptions.tcl timeouts_tahoe3 QUIET
Guide: Tahoe, timeouts, bugfix, with timestamps, old version
Test output agrees with reference output
Running test timeouts_reno:
../../ns test-suite-tcpOptions.tcl timeouts_reno QUIET
Guide: Reno, timeouts, bugfix
Test output agrees with reference output