diff options
author | Vratko Polak <vrpolak@cisco.com> | 2020-01-07 10:23:23 +0100 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2020-01-07 15:23:33 +0000 |
commit | 3a001f6be69e9bc3a5c1cfe3386f9d62fd680af1 (patch) | |
tree | 02e03c094e7560979461149c9f722e65e5f8e222 /resources/libraries/python/Constants.py | |
parent | aa5f30a291cc6781cf7071118d1179d201df75b2 (diff) |
Fix Trex start configuration
Since https://gerrit.fd.io/r/c/csit/+/24056
csit-vpp perf tests are failing.
Turns out the reason is too large limit_memory value,
but other improvements applied during investigation
are included as well.
+ Cat trex.log if trex fails to start.
+ Improve trex startup command formatting (remove double spaces).
+ Reorder imports.
Change-Id: I2c1106ea6f88a1a275682e73eba212d08c7947c8
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/libraries/python/Constants.py')
-rw-r--r-- | resources/libraries/python/Constants.py | 5 |
1 files changed, 3 insertions, 2 deletions
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) |