From ac9a215de025c704e9c462a620b6424bea14210f Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 2 Dec 2014 13:17:34 -0700 Subject: test: Rename test_compression to ut_compression Try to keep the names of the unit test commands consistent. Signed-off-by: Simon Glass --- test/compression.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'test/compression.c') diff --git a/test/compression.c b/test/compression.c index 139ea019f2..c460567198 100644 --- a/test/compression.c +++ b/test/compression.c @@ -313,9 +313,8 @@ out: return ret; } - -static int do_test_compression(cmd_tbl_t *cmdtp, int flag, int argc, - char * const argv[]) +static int do_ut_compression(cmd_tbl_t *cmdtp, int flag, int argc, + char *const argv[]) { int err = 0; @@ -324,12 +323,12 @@ static int do_test_compression(cmd_tbl_t *cmdtp, int flag, int argc, err += run_test("lzma", compress_using_lzma, uncompress_using_lzma); err += run_test("lzo", compress_using_lzo, uncompress_using_lzo); - printf("test_compression %s\n", err == 0 ? "ok" : "FAILED"); + printf("ut_compression %s\n", err == 0 ? "ok" : "FAILED"); return err; } U_BOOT_CMD( - test_compression, 5, 1, do_test_compression, + ut_compression, 5, 1, do_ut_compression, "Basic test of compressors: gzip bzip2 lzma lzo", "" ); -- cgit v1.2.3