diff options
Diffstat (limited to 'resources/libraries/python/autogen/Regenerator.py')
-rw-r--r-- | resources/libraries/python/autogen/Regenerator.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/libraries/python/autogen/Regenerator.py b/resources/libraries/python/autogen/Regenerator.py index 85625c4c35..c2df94c4cf 100644 --- a/resources/libraries/python/autogen/Regenerator.py +++ b/resources/libraries/python/autogen/Regenerator.py @@ -124,6 +124,11 @@ class Regenerator(object): # 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: |