tests: Add missing unterminated_memrsv to dumptrees

unterminated_memrsv is defined in trees.S and has a test program, but
was never included in the dumptrees table, so no .dtb file was
generated for it.

Assisted-by: Claude:claude-opus-4-6
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
David Gibson 2026-06-13 19:58:25 +10:00
parent 5f919a25d7
commit 9b53b9a4c2
3 changed files with 4 additions and 1 deletions

View file

@ -46,7 +46,8 @@ TESTS = $(LIB_TESTS) $(LIBTREE_TESTS) $(DL_LIB_TESTS)
TESTS_TREES_L = test_tree1.dtb bad_node_char.dtb bad_node_format.dtb \
bad_prop_char.dtb ovf_size_strings.dtb truncated_property.dtb \
truncated_string.dtb truncated_memrsv.dtb two_roots.dtb named_root.dtb
truncated_string.dtb truncated_memrsv.dtb unterminated_memrsv.dtb \
two_roots.dtb named_root.dtb
TESTS_TREES = $(TESTS_TREES_L:%=$(TESTS_PREFIX)%)
TESTS_TARGETS = $(TESTS) $(TESTS_TREES)

View file

@ -24,6 +24,7 @@ static struct {
TREE(ovf_size_strings),
TREE(truncated_property), TREE(truncated_string),
TREE(truncated_memrsv),
TREE(unterminated_memrsv),
TREE(two_roots),
TREE(named_root)
};

View file

@ -18,6 +18,7 @@ dumptrees_dtb = custom_target(
'truncated_property.dtb',
'truncated_string.dtb',
'truncated_memrsv.dtb',
'unterminated_memrsv.dtb',
]
)