X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2Fautogen%2FRegenerator.py;h=8bfe054e5ef28cd4429288c78d7d6c6babaaf342;hb=67c955313333b3e478d31e04bdaabcdfddbe2cbe;hp=1c265c3f3c5935e515c99ee1176c0cba61d80fa4;hpb=8de6fce0a2974ea44d4817e81e54ce2ca31ca45e;p=csit.git diff --git a/resources/libraries/python/autogen/Regenerator.py b/resources/libraries/python/autogen/Regenerator.py index 1c265c3f3c..8bfe054e5e 100644 --- a/resources/libraries/python/autogen/Regenerator.py +++ b/resources/libraries/python/autogen/Regenerator.py @@ -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