diff options
| author | Simon Glass <[email protected]> | 2025-02-07 11:30:39 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-02-11 20:10:58 -0600 |
| commit | ea29bad9cff2fd88d172276b58859f01649fe444 (patch) | |
| tree | de52ec210146b21610f326877ff1c8b6d061bac5 /include/test | |
| parent | c908ecb7b51e886469c4fc8eb5492bdbda55b871 (diff) | |
test: Tweak FDT-overlay tests
Use fdt_overlay consistently in the identifiers and file/dir names.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/test')
| -rw-r--r-- | include/test/fdt_overlay.h (renamed from include/test/overlay.h) | 4 | ||||
| -rw-r--r-- | include/test/suites.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/test/overlay.h b/include/test/fdt_overlay.h index 5dc98399ce7..34e8020a496 100644 --- a/include/test/overlay.h +++ b/include/test/fdt_overlay.h @@ -9,7 +9,7 @@ #include <test/test.h> -/* Declare a new environment test */ -#define OVERLAY_TEST(_name, _flags) UNIT_TEST(_name, _flags, overlay) +/* Declare a new FDT-overlay test */ +#define FDT_OVERLAY_TEST(_name, _flags) UNIT_TEST(_name, _flags, fdt_overlay) #endif /* __TEST_OVERLAY_H__ */ diff --git a/include/test/suites.h b/include/test/suites.h index 774dd893378..dce720b4e78 100644 --- a/include/test/suites.h +++ b/include/test/suites.h @@ -36,8 +36,8 @@ int cmd_ut_category(struct unit_test_state *uts, const char *name, int do_ut_bootstd(struct unit_test_state *uts, struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); +int do_ut_fdt_overlay(struct unit_test_state *uts, struct cmd_tbl *cmdtp, + int flag, int argc, char *const argv[]); int do_ut_optee(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); -int do_ut_overlay(struct unit_test_state *uts, struct cmd_tbl *cmdtp, int flag, - int argc, char *const argv[]); #endif /* __TEST_SUITES_H__ */ |
