From d6c8b02114b1a2e7ad265462c5a13b8d834f94fa Mon Sep 17 00:00:00 2001 From: Ivan Ivanets Date: Wed, 2 Apr 2025 21:47:29 +0300 Subject: tests: run iperf tcpbase test without strace by default Type: test Add sleep command instead of strace during iperf test to improve performace result Change-Id: I35e3a3838ca5aff2086feed03f7ed114e90caf50 Signed-off-by: Ivan Ivanets --- resources/libraries/python/HoststackUtil.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'resources/libraries/python/HoststackUtil.py') 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 @@ -321,6 +321,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): -- cgit