Skip to content

Commit

Permalink
t/fiotestlib: display stderr size when it is not empty but should be
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Fu <[email protected]>
  • Loading branch information
vincentkfu committed Feb 5, 2025
1 parent f5bda16 commit 9696e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/fiotestlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def check_result(self):
if 'stderr_empty' in self.success:
if self.success['stderr_empty']:
if stderr_size != 0:
self.failure_reason = f"{self.failure_reason} stderr not empty,"
self.failure_reason = f"{self.failure_reason} stderr not empty size {stderr_size},"
self.passed = False
else:
if stderr_size == 0:
Expand Down

0 comments on commit 9696e10

Please sign in to comment.