diff options
author | Simon Glass <sjg@chromium.org> | 2015-07-06 12:54:24 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-07-21 17:39:30 -0600 |
commit | 6a1c7cef14a41ade84bccdded1fd87b908b6958c (patch) | |
tree | f411334af8078f63b3767ba6bccc1e1167e4b463 /test/dm/Makefile | |
parent | c02790ce12f3bf01a49fbef71da64322fde863e6 (diff) | |
download | u-boot-6a1c7cef14a41ade84bccdded1fd87b908b6958c.tar.gz u-boot-6a1c7cef14a41ade84bccdded1fd87b908b6958c.tar.bz2 u-boot-6a1c7cef14a41ade84bccdded1fd87b908b6958c.zip |
dm: test: Add tests for the clk uclass
Add tests of each API call using a sandbox clock device.
Signed-off-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 19ad2fb99f..7947545868 100644 --- a/test/dm/Makefile +++ b/test/dm/Makefile @@ -15,6 +15,7 @@ obj-$(CONFIG_UT_DM) += test-uclass.o # subsystem you must add sandbox tests here. obj-$(CONFIG_UT_DM) += core.o ifneq ($(CONFIG_SANDBOX),) +obj-$(CONFIG_CLK) += clk.o obj-$(CONFIG_DM_ETH) += eth.o obj-$(CONFIG_DM_GPIO) += gpio.o obj-$(CONFIG_DM_I2C) += i2c.o |