diff options
author | Tobias Waldekranz | 2023-02-16 16:33:53 +0100 |
---|---|---|
committer | Tom Rini | 2023-04-05 10:54:47 -0400 |
commit | 6da06a0338d2bc860a61f9ced4f8de72b4ed9963 (patch) | |
tree | 9ce358651f9b93bcc30469cb93784b1017aa8aee /test/dm/Makefile | |
parent | bb56da117fe608f4da2a62eb93c4457b2f485c72 (diff) |
test: blkmap: Add test suite
Verify that:
- Block maps can be created and destroyed
- Mappings aren't allowed to overlap
- Multiple mappings can be attached and be read/written from/to
Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/dm/Makefile')
-rw-r--r-- | test/dm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dm/Makefile b/test/dm/Makefile index 7a79b6e1a25..e15bdbf04bc 100644 --- a/test/dm/Makefile +++ b/test/dm/Makefile @@ -29,6 +29,7 @@ obj-$(CONFIG_ADC) += adc.o obj-$(CONFIG_SOUND) += audio.o obj-$(CONFIG_AXI) += axi.o obj-$(CONFIG_BLK) += blk.o +obj-$(CONFIG_BLKMAP) += blkmap.o obj-$(CONFIG_BUTTON) += button.o obj-$(CONFIG_DM_BOOTCOUNT) += bootcount.o obj-$(CONFIG_DM_REBOOT_MODE) += reboot-mode.o |