This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 2d8fc9522f5c2ad940f1d7d3b9fbeda1d1b073de Author: Michal Lenc <[email protected]> AuthorDate: Wed Oct 18 12:25:28 2023 +0200 ci: add error status check for ostest ostest should return OK (0) if successful. Signed-off-by: Michal Lenc <[email protected]> --- 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
