diff options
author | 2025-04-02 21:47:29 +0300 | |
---|---|---|
committer | 2025-04-04 16:20:23 +0000 | |
commit | d6c8b02114b1a2e7ad265462c5a13b8d834f94fa (patch) | |
tree | dbaa04639789afc6901e3ed6a0b7d898cba5f0ae /resources/libraries/python/HoststackUtil.py | |
parent | fd14d6ba136ca97513025bf673cb3c68d86f50fd (diff) |
Type: test
Add sleep command instead of strace during iperf test to
improve performace result
Change-Id: I35e3a3838ca5aff2086feed03f7ed114e90caf50
Signed-off-by: Ivan Ivanets <iivanets@cisco.com>
Diffstat (limited to 'resources/libraries/python/HoststackUtil.py')
-rw-r--r-- | resources/libraries/python/HoststackUtil.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/libraries/python/HoststackUtil.py b/resources/libraries/python/HoststackUtil.py index c5ab0924ab..cb3970ff0c 100644 --- a/resources/libraries/python/HoststackUtil.py +++ b/resources/libraries/python/HoststackUtil.py @@ -322,6 +322,15 @@ class HoststackUtil(): exec_cmd_no_error(node, cmd, message=errmsg, sudo=True) @staticmethod + def sleep_for_hoststack_test_duration(sleep_time): + """Wait for the HostStack test program process to complete. + + :param sleep_time: waiting stecific time. + """ + logger.info(f"Sleeping for {sleep_time} seconds") + sleep(sleep_time + 1) + + @staticmethod def hoststack_test_program_finished(node, program_pid, program, other_node, other_program): """Wait for the specified HostStack test program process to complete. |