From 162c5c9f638f4cd411f79b7faa3c469e23cae220 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Mon, 2 Jan 2023 15:58:08 +0100 Subject: [PATCH] os.CmdTestOs: Log test failures in multiple lines Signed-off-by: Jan Lindemann --- src/python/devtest/os/CmdTestOs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/devtest/os/CmdTestOs.py b/src/python/devtest/os/CmdTestOs.py index 97ca843..d3add1a 100644 --- a/src/python/devtest/os/CmdTestOs.py +++ b/src/python/devtest/os/CmdTestOs.py @@ -29,7 +29,7 @@ async def run_test_case(phase, env, machine, case): # export raise Exception("machine is not clear for running tests") rr = await case.run(env, machine, phase) if rr: - slog(ERR, "FAIL: ", rr) + slog_m(ERR, "FAIL: ", rr) except Exception: rr = sys.exc_info()[1] slog(ERR, "FAIL: ", rr)