From 8838c30ea135df030a86628382358f0d02e04576 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Wed, 13 Mar 2013 16:18:04 -0700 Subject: [PATCH] Remove non-functional --prefixlen (use --ipbase instead) --- bin/mn | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bin/mn b/bin/mn index 0fb5bae..b0ad9e0 100755 --- a/bin/mn +++ b/bin/mn @@ -71,8 +71,7 @@ TESTS = [ 'cli', 'build', 'pingall', 'pingpair', 'iperf', 'all', 'iperfudp', ALTSPELLING = { 'pingall': 'pingAll', 'pingpair': 'pingPair', 'iperfudp': 'iperfUdp', - 'iperfUDP': 'iperfUdp', - 'prefixlen': 'prefixLen' } + 'iperfUDP': 'iperfUdp' } def addDictOption( opts, choicesDict, default, name, helpStr=None ): @@ -190,9 +189,6 @@ class MininetRunner( object ): help='CLI script to run before tests' ) opts.add_option( '--post', type='string', default=None, help='CLI script to run after tests' ) - opts.add_option( '--prefixlen', type='int', default=8, - help='prefix length (e.g. /8) for automatic ' - 'network configuration' ) opts.add_option( '--pin', action='store_true', default=False, help="pin hosts to CPU cores " "(requires --host cfs or --host rt)" )