Skip to content

Commit

Permalink
skipping unknown mac test for cisco 8k
Browse files Browse the repository at this point in the history
  • Loading branch information
AnantKishorSharma committed Mar 10, 2023
1 parent 30cc58f commit b0a02a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/arp/test_unknown_mac.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ def unknownMacSetup(duthosts, rand_one_dut_hostname, tbinfo):
"""
duthost = duthosts[rand_one_dut_hostname]
# The behavior on Mellanox for unknown MAC is flooding rather than DROP,
# The behavior on Mellanox and cisco-8000 for unknown MAC is flooding rather than DROP,
# so we need to skip this test on Mellanox platform
asic_type = duthost.facts["asic_type"]
pytest_require(asic_type not in ["mellanox", "barefoot"], "Test is not supported for platform {}".format(asic_type))
pytest_require(asic_type not in ["mellanox", "barefoot", "cisco-8000"], "Test is not supported for platform {}".format(asic_type))

mg_facts = duthost.get_extended_minigraph_facts(tbinfo)
is_backend_topology = mg_facts.get(constants.IS_BACKEND_TOPOLOGY_KEY, False)
Expand Down

0 comments on commit b0a02a7

Please sign in to comment.