summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRick Chen <rick@andestech.com>2019-08-28 13:46:05 +0300
committerAndes <uboot@andestech.com>2019-09-03 04:31:03 +0300
commitabd858e5754c0f1e71aa86abde049d9ee81fda3e (patch)
treeedf25aa2fe914ef4f51435a94ad1ff2255b51233 /test
parent4d0140ee1aa02c702846f47fe986a19ecc4318a6 (diff)
downloadu-boot-abd858e5754c0f1e71aa86abde049d9ee81fda3e.tar.xz
dm: cache: Add enable and disable ops for sandbox and test
Add cache enable and disable ops for test coverage. Signed-off-by: Rick Chen <rick@andestech.com> Cc: KC Lin <kclin@andestech.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/dm/cache.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/dm/cache.c b/test/dm/cache.c
index d4144aab76..2e244b109f 100644
--- a/test/dm/cache.c
+++ b/test/dm/cache.c
@@ -14,6 +14,8 @@ static int dm_test_reset(struct unit_test_state *uts)
ut_assertok(uclass_get_device(UCLASS_CACHE, 0, &dev_cache));
ut_assertok(cache_get_info(dev, &info));
+ ut_assertok(cache_enable(dev));
+ ut_assertok(cache_disable(dev));
return 0;
}