From 1fea09e6c0634ea7f02f9b94883a8261ff3769b1 Mon Sep 17 00:00:00 2001 From: Jan Gelety Date: Thu, 23 May 2019 09:45:01 +0200 Subject: [PATCH] FIX: do not generate 9000B perf test in case of vic1385 nic Change-Id: I7b8e30903a8bc012a3bb43bfb33755e08b56dc1d Signed-off-by: Jan Gelety --- resources/libraries/python/autogen/Regenerator.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/libraries/python/autogen/Regenerator.py b/resources/libraries/python/autogen/Regenerator.py index c2df94c4cf..c8cb9c0d02 100644 --- a/resources/libraries/python/autogen/Regenerator.py +++ b/resources/libraries/python/autogen/Regenerator.py @@ -115,6 +115,9 @@ class Regenerator(object): if "vic1227" in iface: # Not supported in HW. emit = False + if "vic1385" in iface: + # Not supported in HW. + emit = False if "avf" in suite_id: # Not supported by AVF driver. # https://git.fd.io/vpp/tree/src/plugins/avf/README.md -- 2.16.6