commit | 2c522af748162fb69936b732825bc771e09e7256 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Tue Jul 11 20:46:30 2023 -0600 |
committer | Tom Rini <trini@konsulko.com> | Fri Jul 14 12:54:50 2023 -0400 |
tree | 510dcc21b90343675d6930b45561f81ab572c1e1 | |
parent | cef36755094f0c5463ff34ac89de8d88ef68982b [diff] |
bdinfo: Correct use of assertions This test was written for the incorrect use of assertions. Update it to build with the previous approach, where tests fail at the first assertion. All assertion functions return 0 on success and non-zero on failure. They can be nested into functions simply by declaring a function that returns an int and using ut_assertok() to call it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Marek Vasut <marex@denx.de>