Correctly call cli() rather than CLI()
This commit is contained in:
@@ -338,13 +338,13 @@ class MininetRunner( object ):
|
|||||||
mn.ping()
|
mn.ping()
|
||||||
mn.iperf()
|
mn.iperf()
|
||||||
elif test == 'cli':
|
elif test == 'cli':
|
||||||
CLI( mn )
|
cli( mn )
|
||||||
elif test != 'build':
|
elif test != 'build':
|
||||||
mn.waitConnected()
|
mn.waitConnected()
|
||||||
getattr( mn, test )()
|
getattr( mn, test )()
|
||||||
|
|
||||||
if self.options.post:
|
if self.options.post:
|
||||||
CLI( mn, script=self.options.post )
|
cli( mn, script=self.options.post )
|
||||||
|
|
||||||
mn.stop()
|
mn.stop()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user