summaryrefslogtreecommitdiff
path: root/test/lib/cmd_ut_lib.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-01-08 15:08:34 -0500
committerTom Rini <trini@konsulko.com>2020-01-08 15:08:34 -0500
commit3e99c183739afe698df8a4ba813940c94379095b (patch)
tree846ac3ff496f57d6440b17028bc0c801007bbdc3 /test/lib/cmd_ut_lib.c
parentd8a3f5259a36e76d1de127f65714c40918e8ee4c (diff)
parent964b90f61d2b49844bd42d0a0580e1a404063ee1 (diff)
Merge branch '2020-01-07-master-imports'
- DT overlay support in FIT images in SPL - remoteproc update - Assorted SATA fixes - Other assorted fixes
Diffstat (limited to 'test/lib/cmd_ut_lib.c')
-rw-r--r--test/lib/cmd_ut_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/cmd_ut_lib.c b/test/lib/cmd_ut_lib.c
index eb90e53914..c73e8d7b05 100644
--- a/test/lib/cmd_ut_lib.c
+++ b/test/lib/cmd_ut_lib.c
@@ -16,5 +16,5 @@ int do_ut_lib(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
struct unit_test *tests = ll_entry_start(struct unit_test, lib_test);
const int n_ents = ll_entry_count(struct unit_test, lib_test);
- return cmd_ut_category("lib", tests, n_ents, argc, argv);
+ return cmd_ut_category("lib", "lib_test_", tests, n_ents, argc, argv);
}