ryu/flags: Add config parameters related sw test tool

Signed-off-by: Yuichi Ito <ito.yuichi0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
Yuichi Ito 2014-06-23 14:39:51 +09:00 committed by FUJITA Tomonori
parent 6942189d8f
commit 7aa71165d7

View File

@ -56,5 +56,11 @@ CONF.register_cli_opts([
cfg.StrOpt('target', default='0000000000000001', help='target sw dp-id'),
cfg.StrOpt('tester', default='0000000000000002', help='tester sw dp-id'),
cfg.StrOpt('dir', default='ryu/tests/switch/of13',
help='test files directory')
help='test files directory'),
cfg.StrOpt('target-version', default='openflow13',
help='target sw OFP version [openflow13|openflow14] '
'(default: openflow13)'),
cfg.StrOpt('tester-version', default='openflow13',
help='tester sw OFP version [openflow13|openflow14] '
'(default: openflow13)')
], group='test-switch')