summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-03-09 11:22:50 -0500
committerTom Rini <[email protected]>2023-03-09 11:22:50 -0500
commitbcf343146ff365a88481b9a80920ed146c6dee5b (patch)
tree4a99a2364403b620f5dc629e76d1d07225faf8fb /include/test
parent70ed05ce6c051e55e126e67e72ab20409134c953 (diff)
parent953d4177afa0bee0ba0db4b81036d3197595b997 (diff)
Merge tag 'dm-next-9mar23' of https://source.denx.de/u-boot/custodians/u-boot-dm into next
binman x509, separate tools dir and other improvements patman parallel patch generation fdt fixes and tests PyPi support for U-Boot tools buildman reproducible builds
Diffstat (limited to 'include/test')
-rw-r--r--include/test/ut.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/test/ut.h b/include/test/ut.h
index 4d00b4eeca1..2b0dab32f68 100644
--- a/include/test/ut.h
+++ b/include/test/ut.h
@@ -334,6 +334,10 @@ int ut_check_console_dump(struct unit_test_state *uts, int total_bytes);
return CMD_RET_FAILURE; \
} \
+/* Assert that the next console output line is empty */
+#define ut_assert_nextline_empty() \
+ ut_assert_nextline("%s", "")
+
/**
* ut_check_free() - Return the number of bytes free in the malloc() pool
*