Lines Matching full:test

15 #include <test/ut.h>
16 #include <test/overlay.h>
72 ut_assertok(ut_fdt_getprop_u32(fdt, "/test-node", "test-int-property", in fdt_overlay_change_int_property()
85 ut_assertok(fdt_getprop_str(fdt, "/test-node", "test-str-property", in fdt_overlay_change_str_property()
98 ut_assertok(fdt_getprop_str(fdt, "/test-node", "test-str-property-2", in fdt_overlay_add_str_property()
111 off = fdt_path_offset(fdt, "/test-node/new-node"); in fdt_overlay_add_node_by_phandle()
139 off = fdt_path_offset(fdt, "/test-node/sub-test-node"); in fdt_overlay_add_subnode_property()
142 ut_assertnonnull(fdt_getprop(fdt, off, "sub-test-property", NULL)); in fdt_overlay_add_subnode_property()
143 ut_assertnonnull(fdt_getprop(fdt, off, "new-sub-test-property", NULL)); in fdt_overlay_add_subnode_property()
162 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-several-phandle", in fdt_overlay_local_phandle()
166 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-several-phandle", in fdt_overlay_local_phandle()
187 off = fdt_path_offset(fdt, "/test-node"); in fdt_overlay_local_phandles()
193 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-phandle", 0, in fdt_overlay_local_phandles()
197 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-phandle", 1, in fdt_overlay_local_phandles()
211 "stacked-test-int-property", &val)); in fdt_overlay_stacked()
224 struct unit_test *test; in do_ut_overlay() local
285 for (test = tests; test < tests + n_ents; test++) { in do_ut_overlay()
286 if (argc > 1 && strcmp(argv[1], test->name)) in do_ut_overlay()
288 printf("Test: %s\n", test->name); in do_ut_overlay()
292 test->func(uts); in do_ut_overlay()