summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-11-01 13:40:14 -0600
committerPatrick Georgi <pgeorgi@google.com>2021-11-03 08:29:16 +0000
commit4c8c8442ab6d3b0cdc267f5c479dc5d54bf87525 (patch)
tree29b2dde483588e9db54b5093d2b18cbd75e36d40 /tests
parent74a06296608e4c868e101ea47c0a1389977ecd91 (diff)
downloadcoreboot-4c8c8442ab6d3b0cdc267f5c479dc5d54bf87525.tar.gz
lib/list: Add list_append
This method will add a node to the end of the list. BUG=b:179699789 TEST=Boot guybrush to the OS Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I1792e40f789e3ef16ceca65ce4cae946e08583d1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/58805 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/list-test.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/lib/list-test.c b/tests/lib/list-test.c
index 309346abec..39bfb17f7c 100644
--- a/tests/lib/list-test.c
+++ b/tests/lib/list-test.c
@@ -116,12 +116,32 @@ void test_list_remove(void **state)
free(c1);
}
+void test_list_append(void **state)
+{
+ size_t idx;
+ struct test_container *node;
+ struct list_node root = {};
+ struct test_container nodes[] = {
+ {1}, {2}, {3}
+ };
+
+ for (idx = 0; idx < ARRAY_SIZE(nodes); ++idx)
+ list_append(&nodes[idx].list_node, &root);
+
+ idx = 0;
+ list_for_each(node, root, list_node) {
+ assert_ptr_equal(node, &nodes[idx]);
+ idx++;
+ }
+}
+
int main(void)
{
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_list_insert_after),
cmocka_unit_test(test_list_insert_before),
cmocka_unit_test(test_list_remove),
+ cmocka_unit_test(test_list_append),
};