From 41eef37e1b546dd51ce5db83c58c9103b0dbf498 Mon Sep 17 00:00:00 2001 From: Christophe Rene Date: Wed, 3 Jul 2019 10:34:08 -0700 Subject: [PATCH] - Fix some tests to avoid some failures on Cisco C9K --- tests/integration/mininet_tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/mininet_tests.py b/tests/integration/mininet_tests.py index dc24249a59..2ea7dd7488 100644 --- a/tests/integration/mininet_tests.py +++ b/tests/integration/mininet_tests.py @@ -4139,6 +4139,7 @@ def test_port5002_notblocked(self): class FaucetUntaggedEgressACLTest(FaucetUntaggedTest): + REQUIRES_METADATA = True CONFIG_GLOBAL = """ vlans: 100: @@ -6615,6 +6616,7 @@ def add_dp(name, dpid, hw_dpid, i, stack, dp_config = { 'dp_id': int(dpid), 'hardware': hardware if dpid == hw_dpid else 'Open vSwitch', + 'table_sizes': {'flood': 64}, 'ofchannel_log': ofchannel_log + str(i) if ofchannel_log else None, 'interfaces': {}, 'lldp_beacon': {'send_interval': 5, 'max_per_interval': 5},