From: Simon Glass <simon.glass@canonical.com> Add a _base suffix to this test so that it is easier to run it by itself with test.py without also getting dm_test_host_dup() Signed-off-by: Simon Glass <simon.glass@canonical.com> --- (no changes since v1) test/dm/host.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dm/host.c b/test/dm/host.c index a126cc9b3a5..3abf573a54e 100644 --- a/test/dm/host.c +++ b/test/dm/host.c @@ -16,7 +16,7 @@ #include <test/ut.h> /* Basic test of host interface */ -static int dm_test_host(struct unit_test_state *uts) +static int dm_test_host_base(struct unit_test_state *uts) { static char label[] = "test"; struct udevice *dev, *part, *chk, *blk; @@ -72,7 +72,7 @@ static int dm_test_host(struct unit_test_state *uts) return 0; } -DM_TEST(dm_test_host, UTF_SCAN_FDT); +DM_TEST(dm_test_host_base, UTF_SCAN_FDT); /* reusing the same label should work */ static int dm_test_host_dup(struct unit_test_state *uts) -- 2.43.0