diff options
author | Jan Gelety <jgelety@cisco.com> | 2019-05-23 09:45:01 +0200 |
---|---|---|
committer | Jan Gelety <jgelety@cisco.com> | 2019-05-27 10:20:58 +0000 |
commit | 1fea09e6c0634ea7f02f9b94883a8261ff3769b1 (patch) | |
tree | 44063a3a2c48e857c9184316fe88a435f831a18e | |
parent | 0a244598ba87a339fd7590f2e42dcc507e9a098c (diff) |
FIX: do not generate 9000B perf test in case of vic1385 nic
Change-Id: I7b8e30903a8bc012a3bb43bfb33755e08b56dc1d
Signed-off-by: Jan Gelety <jgelety@cisco.com>
-rw-r--r-- | resources/libraries/python/autogen/Regenerator.py | 3 |
1 files changed, 3 insertions, 0 deletions
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 |