diff options
author | pmikus <peter.mikus@protonmail.ch> | 2023-06-02 11:52:16 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2023-06-02 11:57:06 +0000 |
commit | fce274ba49bd75a56296905bf437e6c74759b872 (patch) | |
tree | 0a77696128b1645d141114d3024b242b9a4ee791 /resources | |
parent | c907a9276ac532f5465de36599a2cb2440e38c21 (diff) |
fix(dpdk): CX7 supportoper-rls2306-230605
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ib98b25bd3c98b5e6dbcb1bfe8478bd41bf37d71c
(cherry picked from commit 0952440b3136fc75aa2f2d98df3d198ff978661b)
Diffstat (limited to 'resources')
-rw-r--r-- | resources/libraries/python/DPDK/TestpmdTest.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/resources/libraries/python/DPDK/TestpmdTest.py b/resources/libraries/python/DPDK/TestpmdTest.py index 091110f129..f2e1efacf1 100644 --- a/resources/libraries/python/DPDK/TestpmdTest.py +++ b/resources/libraries/python/DPDK/TestpmdTest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Cisco and/or its affiliates. +# Copyright (c) 2023 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -27,7 +27,7 @@ class TestpmdTest: """ This class start testpmd on topology nodes and check if properly started. """ - + @staticmethod def start_testpmd_on_all_duts( nodes, topology_info, phy_cores, rx_queues=None, jumbo_frames=False, @@ -88,6 +88,10 @@ class TestpmdTest: if u"DUT" in node: for i in range(3): try: + nic_model = nodes[node]["interfaces"][if1]["model"] + if "Mellanox-CX7VEAT" in nic_model: + # Does not support lsc interrupt. + break TestpmdTest.check_testpmd(nodes[node]) break except RuntimeError: |