summaryrefslogtreecommitdiff
path: root/test/dm/test-dm.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-08 03:34:59 +0300
committerTom Rini <trini@konsulko.com>2021-03-12 17:57:30 +0300
commite77615d3a78f43793f27cd4dbe04efc6522a05ef (patch)
tree183516c27987785617cdc9e63f1310380ea89a9d /test/dm/test-dm.c
parentc79705ea938e40e204ad90e083a0654f0598a772 (diff)
downloadu-boot-e77615d3a78f43793f27cd4dbe04efc6522a05ef.tar.xz
test: Move dm_test_destroy() into test-main.c
Move this function into the common test runner and rename it to dm_test_post_run() so that its purpose is clear. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/dm/test-dm.c')
-rw-r--r--test/dm/test-dm.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/dm/test-dm.c b/test/dm/test-dm.c
index d601e49752..df938395bb 100644
--- a/test/dm/test-dm.c
+++ b/test/dm/test-dm.c
@@ -22,26 +22,6 @@ DECLARE_GLOBAL_DATA_PTR;
struct unit_test_state global_dm_test_state;
-static int dm_test_destroy(struct unit_test_state *uts)
-{
- int id;
-
- for (id = 0; id < UCLASS_COUNT; id++) {
- struct uclass *uc;
-
- /*
- * If the uclass doesn't exist we don't want to create it. So
- * check that here before we call uclass_find_device().
- */
- uc = uclass_find(id);
- if (!uc)
- continue;
- ut_assertok(uclass_destroy(uc));
- }
-
- return 0;
-}
-
static int dm_do_test(struct unit_test_state *uts, struct unit_test *test,
bool of_live)
{
@@ -57,8 +37,6 @@ static int dm_do_test(struct unit_test_state *uts, struct unit_test *test,
ut_assertok(test_post_run(uts, test));
- ut_assertok(dm_test_destroy(uts));
-
return 0;
}