diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-12 19:26:23 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-01-13 09:13:41 -0700 |
commit | e50a24a0456c07d28c0d589e061dd0576f6bb917 (patch) | |
tree | a806d836573039a451b42643ad3fcb9c0951b3e2 /test | |
parent | 99047f5d7f9cb013f7040edd7d20a70cc30646b5 (diff) | |
download | u-boot-e50a24a0456c07d28c0d589e061dd0576f6bb917.tar.gz |
bloblist: Add functions to obtain base address and size
Add a few convenience functions to obtain useful information about the
bloblist.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/bloblist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/bloblist.c b/test/bloblist.c index c5788d5cd82..720be7e244f 100644 --- a/test/bloblist.c +++ b/test/bloblist.c @@ -107,6 +107,8 @@ static int bloblist_test_blob(struct unit_test_state *uts) hdr = clear_bloblist(); ut_assertnull(bloblist_find(TEST_TAG, TEST_BLOBLIST_SIZE)); ut_assertok(bloblist_new(TEST_ADDR, TEST_BLOBLIST_SIZE, 0)); + ut_asserteq(TEST_BLOBLIST_SIZE, bloblist_get_size()); + ut_asserteq(TEST_ADDR, bloblist_get_base()); ut_asserteq(map_to_sysmem(hdr), TEST_ADDR); /* Add a record and check that we can find it */ |