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:21:09 +0000 |
commit | 7f6cdb4c7be95205b804b8d479ee8d61eda49ed0 (patch) | |
tree | 3fa42cfb51d89c6df2131a7d1b8dd100f33a4c8f | |
parent | 7f8ab7f453082e9eefa1bb1a22672feb7f639b51 (diff) |
FIX: do not generate 9000B perf test in case of vic1385 nic
Change-Id: I7b8e30903a8bc012a3bb43bfb33755e08b56dc1d
Signed-off-by: Jan Gelety <jgelety@cisco.com>
(cherry picked from commit 1fea09e6c0634ea7f02f9b94883a8261ff3769b1)
-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 |