PLRsearch: Initial implementation and suites
[csit.git] / resources / libraries / python / autogen / Regenerator.py
index 1c265c3..8bfe054 100644 (file)
@@ -97,10 +97,15 @@ class Regenerator(object):
             if kwargs["framesize"] == 9000 and "vic1227" in iface:
                 # Not supported in HW.
                 pass
-            else if kwargs["framesize"] == 9000 and "avf" in suite_id:
+            elif kwargs["framesize"] == 9000 and "avf" in suite_id:
                 # Not supported by AVF driver.
                 # https://git.fd.io/vpp/tree/src/plugins/avf/README.md
                 pass
+            elif ("soak" in suite_id and
+                  (kwargs["phy_cores"] != 1
+                   or kwargs["framesize"] in (1518, 9000, "IMIX_v4_1"))):
+                # Soak test take too long, do not risk other than tc01.
+                pass
             else:
                 file_out.write(testcase.generate(num=num, **kwargs))
             return num + 1