Skip to content

Commit 0693814

Browse files
committed
Fix formatting
1 parent d8aae0a commit 0693814

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/validation/mtl_engine/RxTxApp.py

100644100755
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -792,15 +792,11 @@ def execute_perf_test(
792792
cp.wait()
793793

794794
# Enhanced logging for process completion
795-
logger.info(
796-
f"Performance RxTxApp process completed with return code: {cp.return_code}"
797-
)
795+
logger.info(f"Performance RxTxApp was killed with signal {-cp.return_code}")
798796

799797
# Check if process was killed or terminated unexpectedly
800798
if cp.return_code < 0:
801-
logger.info(
802-
f"Performance RxTxApp was killed with signal {-cp.return_code}"
803-
)
799+
logger.info(f"Performance RxTxApp was killed with signal {-cp.return_code}")
804800
return False
805801
elif cp.return_code == 124: # timeout return code
806802
logger.info("Performance RxTxApp timed out")

0 commit comments

Comments
 (0)