diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/dm/Makefile | 2 | ||||
| -rw-r--r-- | test/dm/test-dm.c (renamed from test/dm/test-main.c) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/dm/Makefile b/test/dm/Makefile index fd1455109d..f5cc5540e8 100644 --- a/test/dm/Makefile +++ b/test/dm/Makefile @@ -2,7 +2,7 @@ # # Copyright (c) 2013 Google, Inc -obj-$(CONFIG_UT_DM) += test-main.o +obj-$(CONFIG_UT_DM) += test-dm.o # Tests for particular subsystems - when enabling driver model for a new # subsystem you must add sandbox tests here. diff --git a/test/dm/test-main.c b/test/dm/test-dm.c index 560f8d63ec..71e9cf6e5d 100644 --- a/test/dm/test-main.c +++ b/test/dm/test-dm.c @@ -146,7 +146,7 @@ static bool test_matches(const char *test_name, const char *find_name) return false; } -int dm_test_main(const char *test_name) +int dm_test_run(const char *test_name) { struct unit_test *tests = ll_entry_start(struct unit_test, dm_test); const int n_ents = ll_entry_count(struct unit_test, dm_test); @@ -226,5 +226,5 @@ int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) if (argc > 1) test_name = argv[1]; - return dm_test_main(test_name); + return dm_test_run(test_name); } |
