diff options
author | Todd Malsbary <todd.malsbary@intel.com> | 2021-04-28 12:39:01 -0700 |
---|---|---|
committer | Todd Malsbary <todd.malsbary@intel.com> | 2021-04-28 12:40:18 -0700 |
commit | d2356fcce2baf0918e43c8bab21b8f406f195b91 (patch) | |
tree | 6c778aee8f09fb35cb667b080c614cecde86b9fc /kud/tests | |
parent | 4ff7900c3c74fa6b497af6d1e36f81e08a193d83 (diff) |
Add X710 to iavf driver NICs
Issue-ID: MULTICLOUD-1336
Signed-off-by: Todd Malsbary <todd.malsbary@intel.com>
Change-Id: I7a0ee4302c020e6b7ec785d6a85af636b6a85ecc
Diffstat (limited to 'kud/tests')
-rwxr-xr-x | kud/tests/topology-manager.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kud/tests/topology-manager.sh b/kud/tests/topology-manager.sh index 7d434386..5c9f900d 100755 --- a/kud/tests/topology-manager.sh +++ b/kud/tests/topology-manager.sh @@ -15,7 +15,8 @@ set -o pipefail source _common.sh source _functions.sh -if [ -z "$( lspci | grep "Ethernet Controller XL710" | head -n 1 | cut -d " " -f 8 )" ]; then +adaptors="X710 XL710 X722" +if [[ $(lspci | grep -c "Ethernet .* \(${adaptors// /\\|}\)") == "0" ]]; then echo "Ethernet adaptor version is not set. Topology manager test case cannot run on this machine" exit 0 else |