test-suite-manual-routing.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #
  2. Agent/TCP set tcpTick_ 0.1
  3. # The default for tcpTick_ is being changed to reflect a changing reality.
  4. Agent/TCP set rfc2988_ false
  5. # The default for rfc2988_ is being changed to true.
  6. # Copyright (c) 1998 University of Southern California.
  7. # All rights reserved.                                            
  8. #                                                                
  9. # Redistribution and use in source and binary forms are permitted
  10. # provided that the above copyright notice and this paragraph are
  11. # duplicated in all such forms and that any documentation, advertising
  12. # materials, and other materials related to such distribution and use
  13. # acknowledge that the software was developed by the University of
  14. # Southern California, Information Sciences Institute.  The name of the
  15. # University may not be used to endorse or promote products derived from
  16. # this software without specific prior written permission.
  17. # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
  18. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  19. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  20. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/test/test-suite-manual-routing.tcl,v 1.7 2006/01/24 23:00:06 sallyfloyd Exp $
  21. #
  22. #
  23. # invoked as ns $file $t [QUIET]
  24. # expected to pop up xgraph output (unless QUIET)
  25. # and to leave the plot in temp.rands
  26. #
  27. proc usage {} {
  28. puts stderr {usage: ns test-suite-manual-routing.tcl test [QUIET]
  29. Test suites for manual routing.
  30. }
  31. exit 1
  32. }
  33. remove-all-packet-headers       ; # removes all except common
  34. add-packet-header Flags IP TCP  ; # hdrs reqd for validation test
  35. # FOR UPDATING GLOBAL DEFAULTS:
  36. Agent/TCP set precisionReduce_ false ;   # default changed on 2006/1/24.
  37. Agent/TCP set rtxcur_init_ 6.0 ;      # Default changed on 2006/01/21
  38. Agent/TCP set updated_rttvar_ false ;  # Variable added on 2006/1/21
  39. Agent/TCP set minrto_ 1
  40. # default changed on 10/14/2004.
  41. Agent/TCP set useHeaders_ false
  42. # The default is being changed to useHeaders_ true.
  43. global in_test_suite
  44. set in_test_suite 1
  45. source ../ex/many_tcp.tcl
  46. # these are fakes for test-all
  47. Class Test/one_client
  48. proc main {} {
  49. global argv
  50. #
  51. # Icky icky icky.
  52. # We slap a test-suite-friendly interface over
  53. # the otherwise nice interface provided by
  54. # rbp_demo.tcl.
  55. #
  56. set graph 1
  57. foreach i $argv {
  58. switch $i {
  59. quiet {
  60. set graph 0
  61. }
  62. QUIET {
  63. set graph 0
  64. }
  65. one_client {
  66. set args "-duration 10 -initial-client-count 1 -client-arrival-rate 0"
  67. set title $i
  68. }
  69. }
  70. }
  71. # Always set ns-random-seed so we get the same results every time.
  72. new Main "-graph-results $graph -ns-random-seed 1 -test-suite 1 -title $title $args"
  73. }
  74. main