X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FConstants.py;h=d6a94abb9e32ef1d4f0a077d9900749e45cc548c;hb=refs%2Fchanges%2F81%2F24181%2F11;hp=e6f22bdaec718fff46972ccd2ec01652aed79bd1;hpb=aa5f30a291cc6781cf7071118d1179d201df75b2;p=csit.git diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index e6f22bdaec..d6a94abb9e 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -184,8 +184,9 @@ class Constants: # TRex install directory TREX_INSTALL_DIR = u"/opt/trex-core-2.61" - # TRex limit memory - TREX_LIMIT_MEMORY = get_int_from_env(u"TREX_LIMIT_MEMORY ", 8192) + # TRex limit memory. + # 4096 pages (4 GB) is used just due to the current testbed settings. + TREX_LIMIT_MEMORY = get_int_from_env(u"TREX_LIMIT_MEMORY ", 4096) # TRex number of cores TREX_CORE_COUNT = get_int_from_env(u"TREX_CORE_COUNT", 7)