From 732a78c20b12938a05b6dd761365f7f35b278602 Mon Sep 17 00:00:00 2001 From: Kanchan Sen Laskar Date: Tue, 12 Nov 2024 16:28:07 +0530 Subject: [PATCH] Check ntttcp test failure --- lisa/tools/ntttcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisa/tools/ntttcp.py b/lisa/tools/ntttcp.py index 5f28820a00..023ff96b0a 100644 --- a/lisa/tools/ntttcp.py +++ b/lisa/tools/ntttcp.py @@ -348,7 +348,7 @@ def create_ntttcp_result( self, result: ExecutableResult, role: str = "server" ) -> NtttcpResult: matched_results = self.output_pattern.match(result.stdout) - assert matched_results, "not found matched ntttcp results." + assert matched_results, f"not found matched ntttcp results.:: {result.stdout}" ntttcp_result = NtttcpResult() ntttcp_result.role = role if "Mbps" == matched_results.group("unit"):