aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-08-18 21:40:33 -0600
committerTom Rini <trini@konsulko.com>2021-09-16 14:39:40 -0400
commit2e09008c3c938dac28440d948a27b1c4190f36d2 (patch)
tree13618b7abd3389e066642046463e61db576eb0c9 /test
parentb9274095c2cd1ae42f232c823e9e9557696be91a (diff)
downloadu-boot-2e09008c3c938dac28440d948a27b1c4190f36d2.zip
u-boot-2e09008c3c938dac28440d948a27b1c4190f36d2.tar.gz
u-boot-2e09008c3c938dac28440d948a27b1c4190f36d2.tar.bz2
test: Add a way to skip console checking until a string matches
Some tests produce a lot of output that does not need to be individually checked by an assertion. Add a macro to handle this. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/ut.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/ut.c b/test/ut.c
index 1eec2a5..28da417 100644
--- a/test/ut.c
+++ b/test/ut.c
@@ -121,6 +121,32 @@ int ut_check_skipline(struct unit_test_state *uts)
return 0;
}
+int ut_check_skip_to_line(struct unit_test_state *uts, const char *fmt, ...)
+{
+ va_list args;
+ int len;
+ int ret;
+
+ va_start(args, fmt);
+ len = vsnprintf(uts->expect_str, sizeof(uts->expect_str), fmt, args);
+ va_end(args);
+ if (len >= sizeof(uts->expect_str)) {
+ ut_fail(uts, __FILE__, __LINE__, __func__,
+ "unit_test_state->expect_str too small");
+ return -EOVERFLOW;
+ }
+ while (1) {
+ if (!console_record_avail())
+ return -ENOENT;
+ ret = readline_check(uts);
+ if (ret < 0)
+ return ret;
+
+ if (!strcmp(uts->expect_str, uts->actual_str))
+ return 0;
+ }
+}
+
int ut_check_console_end(struct unit_test_state *uts)
{
int ret;