X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2Fautogen%2FRegenerator.py;h=6d35d1d13fdad9ec5bb574d550a2c071884e5f72;hb=a5a51a112a0d3475f2368a18b6b42f7712ec5b25;hp=e6474e566d08c930e0b4c8b682fbc96dc7e38f5d;hpb=80adeefab9fc1871675688881498304ddc780828;p=csit.git diff --git a/resources/libraries/python/autogen/Regenerator.py b/resources/libraries/python/autogen/Regenerator.py index e6474e566d..6d35d1d13f 100644 --- a/resources/libraries/python/autogen/Regenerator.py +++ b/resources/libraries/python/autogen/Regenerator.py @@ -140,10 +140,6 @@ def add_default_testcases(testcase, iface, suite_id, file_out, tc_kwargs_list): if u"vic1385" in iface: # Not supported in HW. emit = False - if u"ipsec" in suite_id: - # IPsec code does not support chained buffers. - # Tracked by Jira ticket VPP-1207. - emit = False if u"-16vm2t-" in suite_id or u"-16dcr2t-" in suite_id: if kwargs[u"phy_cores"] > 3: # CSIT lab only has 28 (physical) core processors, @@ -160,6 +156,9 @@ def add_default_testcases(testcase, iface, suite_id, file_out, tc_kwargs_list): emit = False if kwargs[u"frame_size"] not in MIN_FRAME_SIZE_VALUES: emit = False + if u"-cps-" in suite_id or u"-pps-" in suite_id: + if kwargs[u"frame_size"] not in MIN_FRAME_SIZE_VALUES: + emit = False if emit: file_out.write(testcase.generate(**kwargs))