Skip to content

Commit

Permalink
Check ntttcp test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
kanchansenlaskar committed Nov 12, 2024
1 parent 681f5bd commit 60701de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisa/tools/ntttcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"):
Expand Down

0 comments on commit 60701de

Please sign in to comment.