configs: remove -p from ruby_network_test.py
A recent patch broke the ruby network tester by adding -p inside Options.py which conflicts with the -p inside ruby_network_test.py. Have removed -p from ruby_network_test.py
This commit is contained in:
parent
9f1b60e05c
commit
de97d75965
1 changed files with 4 additions and 4 deletions
|
@ -65,11 +65,11 @@ parser.add_option("--sim-cycles", type="int", default=1000,
|
||||||
help="Number of simulation cycles")
|
help="Number of simulation cycles")
|
||||||
|
|
||||||
parser.add_option("--fixed-pkts", action="store_true",
|
parser.add_option("--fixed-pkts", action="store_true",
|
||||||
help="Network_test: send only -p number of packets")
|
help="Network_test: inject --maxpackets and stop")
|
||||||
|
|
||||||
parser.add_option("-p", "--maxpackets", type="int", default=1,
|
parser.add_option("--maxpackets", type="int", default=1,
|
||||||
metavar="P",
|
help="Stop injecting after --maxpackets. \
|
||||||
help="Stop after Packets (works only with --fixed-pkts")
|
Works only with --fixed-pkts")
|
||||||
|
|
||||||
#
|
#
|
||||||
# Add the ruby specific and protocol specific options
|
# Add the ruby specific and protocol specific options
|
||||||
|
|
Loading…
Reference in a new issue