From d71da38145ea9b7bae577bb2bfe635e3f4a80fc1 Mon Sep 17 00:00:00 2001 From: Chitra Raghavan <32665166+chitra-raghavan@users.noreply.github.com> Date: Sat, 27 Feb 2021 00:33:34 +0530 Subject: [PATCH] Include th3 asic in get_asic_name function (#3044) Description of PR Include Broadcom th3 asic in get_asic_name function --- tests/common/devices.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/common/devices.py b/tests/common/devices.py index 27aebe81b71..2a774c7c25a 100644 --- a/tests/common/devices.py +++ b/tests/common/devices.py @@ -1166,6 +1166,8 @@ def get_asic_name(self): asic = "td2" elif "Broadcom Limited Device b870" in output: asic = "td3" + elif "Broadcom Limited Device b980" in output: + asic = "th3" return asic