]> git.dujemihanovic.xyz Git - u-boot.git/commit
bdinfo: Correct use of assertions
authorSimon Glass <sjg@chromium.org>
Wed, 12 Jul 2023 02:46:30 +0000 (20:46 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 14 Jul 2023 16:54:50 +0000 (12:54 -0400)
commit2c522af748162fb69936b732825bc771e09e7256
tree510dcc21b90343675d6930b45561f81ab572c1e1
parentcef36755094f0c5463ff34ac89de8d88ef68982b
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>
test/cmd/bdinfo.c