NF_density dot1qip4udpvxlan
[csit.git] / resources / libraries / python / autogen / Regenerator.py
index 85625c4..89acff7 100644 (file)
@@ -73,7 +73,8 @@ class Regenerator(object):
         protocol_to_min_frame_size = {
             "ip4": 64,
             "ip6": 78,
-            "vxlan+ip4": 114  # What is the real minimum for latency stream?
+            "ethip4vxlan": 114,  # What is the real minimum for latency stream?
+            "dot1qip4vxlan": 118
         }
         min_frame_size_values = protocol_to_min_frame_size.values()
 
@@ -115,15 +116,19 @@ class Regenerator(object):
                 if "vic1227" 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
+                if "vic1385" in iface:
+                    # Not supported in HW.
                     emit = False
             if "-16vm2t-" in suite_id or "-16dcr2t-" in suite_id:
                 if kwargs["phy_cores"] > 3:
                     # CSIT lab only has 28 (physical) core processors,
                     # so these test would fail when attempting to assign cores.
                     emit = False
+            if "-24vm1t-" in suite_id or "-24dcr1t-" in suite_id:
+                if kwargs["phy_cores"] > 3:
+                    # CSIT lab only has 28 (physical) core processors,
+                    # so these test would fail when attempting to assign cores.
+                    emit = False
             if "soak" in suite_id:
                 # Soak test take too long, do not risk other than tc01.
                 if kwargs["phy_cores"] != 1: