diff options
author | ahothan <ahothan@cisco.com> | 2018-11-20 09:52:00 -0800 |
---|---|---|
committer | ahothan <ahothan@cisco.com> | 2018-11-20 10:09:21 -0800 |
commit | 8b1b3e5c7fb91f450b2abe4a8201bcfec14b2bb9 (patch) | |
tree | 56e00816633de94b848e2951673e52d56903f797 /test/test_chains.py | |
parent | 4988edf6afb74026db81677f25877b27b8fcfc05 (diff) |
NFVBENCH-111 Add support for VxLAN3.0.0
Change-Id: I7d9d7ccb6be7445e625ec520d22c5f045b56d5ff
Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'test/test_chains.py')
-rw-r--r-- | test/test_chains.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_chains.py b/test/test_chains.py index 109b73b..a9c9ac7 100644 --- a/test/test_chains.py +++ b/test/test_chains.py @@ -76,6 +76,7 @@ def test_chain_runner_ext_no_openstack(): config = _get_chain_config(sc=ChainType.EXT) specs = Specs() config.vlans = [100, 200] + config.vnis = [5000, 6000] config['traffic_generator']['mac_addrs_left'] = ['00:00:00:00:00:00'] config['traffic_generator']['mac_addrs_right'] = ['00:00:00:00:01:00'] @@ -172,6 +173,7 @@ def _check_nfvbench_openstack(sc=ChainType.PVP, l2_loopback=False): if l2_loopback: config.l2_loopback = True config.vlans = [[100], [200]] + config.vnis = [[5000], [6000]] factory = BasicFactory() config_plugin = factory.get_config_plugin_class()(config) config = config_plugin.get_config() |