diff options
author | Maros Mullner <maros.mullner@pantheon.tech> | 2020-02-17 13:01:00 +0100 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2020-02-18 07:34:22 +0000 |
commit | eb774c3e205a538262aef928bfbed17cd5be7b25 (patch) | |
tree | 6b25b69f1ea633c961604ec8ba0b6778db55b364 /resources/libraries | |
parent | c8bc6ec55a9331c420b4d269c4dbab91d6f1ca76 (diff) |
Add option to run Trex with --force parameter to start
regardless of ports state.
Signed-off-by: Maros Mullner <maros.mullner@pantheon.tech>
Change-Id: Iaafb5ff3a53a290ca79506bdb559a32d39570482
Diffstat (limited to 'resources/libraries')
-rw-r--r-- | resources/libraries/python/Constants.py | 3 | ||||
-rw-r--r-- | resources/libraries/python/TrafficGenerator.py | 14 |
2 files changed, 11 insertions, 6 deletions
diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index 99c1e87d55..9a58ed1a17 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -196,6 +196,9 @@ class Constants: # TRex number of cores TREX_CORE_COUNT = get_int_from_env(u"TREX_CORE_COUNT", 7) + # Trex force start regardles ports state + TREX_SEND_FORCE = get_pessimistic_bool_from_env(u"TREX_SEND_FORCE") + # TRex extra commandline arguments TREX_EXTRA_CMDLINE = get_str_from_env(u"TREX_EXTRA_CMDLINE", u"") diff --git a/resources/libraries/python/TrafficGenerator.py b/resources/libraries/python/TrafficGenerator.py index 1b519d5713..f48792db3d 100644 --- a/resources/libraries/python/TrafficGenerator.py +++ b/resources/libraries/python/TrafficGenerator.py @@ -519,17 +519,19 @@ class TrafficGenerator(AbstractMeasurer): warmup_time = float(warmup_time) command = f"sh -c \"" \ f"{Constants.REMOTE_FW_DIR}/resources/tools/trex/" \ - f"trex_stateless_profile.py" \ - f" --profile {Constants.REMOTE_FW_DIR}/resources/" \ - f"traffic_profiles/trex/{traffic_profile}.py" \ - f" --duration {duration!r} --frame_size {frame_size} " \ + f"trex_stateless_profile.py " \ + f"--profile {Constants.REMOTE_FW_DIR}/resources/" \ + f"traffic_profiles/trex/{traffic_profile}.py " \ + f"--duration {duration!r} --frame_size {frame_size} " \ f"--rate {rate!r} --warmup_time {warmup_time!r} " \ - f"--port_0 {p_0} --port_1 {p_1}" \ - f" --traffic_directions {traffic_directions}" + f"--port_0 {p_0} --port_1 {p_1} " \ + f"--traffic_directions {traffic_directions}" if async_call: command += u" --async_start" if latency: command += u" --latency" + if Constants.TREX_SEND_FORCE: + command += u" --force" command += u"\"" stdout, _ = exec_cmd_no_error( |