From 2d8fc9522f5c2ad940f1d7d3b9fbeda1d1b073de Mon Sep 17 00:00:00 2001 From: Michal Lenc Date: Wed, 18 Oct 2023 12:25:28 +0200 Subject: [PATCH] ci: add error status check for ostest ostest should return OK (0) if successful. Signed-off-by: Michal Lenc --- tools/ci/testrun/script/test_os/test_os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/testrun/script/test_os/test_os.py b/tools/ci/testrun/script/test_os/test_os.py index c25bd8ba3d..030872c063 100644 --- a/tools/ci/testrun/script/test_os/test_os.py +++ b/tools/ci/testrun/script/test_os/test_os.py @@ -7,7 +7,7 @@ do_not_support = ["sabre-6quad", "rv-virt", "rv-virt64", "esp32c3-devkit", "bl60 def test_ostest(p): - ret = p.sendCommand("ostest", "Exiting with status", 300) + ret = p.sendCommand("ostest", "Exiting with status 0", 300) assert ret == 0