Skip to content

Commit

Permalink
ci: add error status check for ostest
Browse files Browse the repository at this point in the history
ostest should return OK (0) if successful.

Signed-off-by: Michal Lenc <[email protected]>
  • Loading branch information
michallenc authored and xiaoxiang781216 committed Oct 19, 2023
1 parent f43701c commit 2d8fc95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci/testrun/script/test_os/test_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def test_ostest(p):
ret = p.sendCommand("ostest", "Exiting with status", 300)
ret = p.sendCommand("ostest", "Exiting with status 0", 300)
assert ret == 0


Expand Down

0 comments on commit 2d8fc95

Please sign in to comment.