mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 20:58:22 +00:00
test: Move time_ut test into lib
This test doesn't belong at the top level. Move it into the lib/ directory, to match its implementation. Rename it to drop the unnecessary _ut suffix. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Tom Rini <trini@konsulko.com> # rpi_3, rpi_4, rpi_arm64, am64x_evm_a53, am64-sk
This commit is contained in:
parent
5912a9ea1a
commit
890d91ff35
3 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,6 @@ endif
|
||||||
ifneq ($(CONFIG_HUSH_PARSER),)
|
ifneq ($(CONFIG_HUSH_PARSER),)
|
||||||
obj-$(CONFIG_$(XPL_)CMDLINE) += hush/
|
obj-$(CONFIG_$(XPL_)CMDLINE) += hush/
|
||||||
endif
|
endif
|
||||||
obj-$(CONFIG_UT_TIME) += time_ut.o
|
|
||||||
obj-y += ut.o
|
obj-y += ut.o
|
||||||
|
|
||||||
ifeq ($(CONFIG_XPL_BUILD),)
|
ifeq ($(CONFIG_XPL_BUILD),)
|
||||||
|
|
|
@ -27,6 +27,7 @@ obj-$(CONFIG_AES) += test_aes.o
|
||||||
obj-$(CONFIG_GETOPT) += getopt.o
|
obj-$(CONFIG_GETOPT) += getopt.o
|
||||||
obj-$(CONFIG_CRC8) += test_crc8.o
|
obj-$(CONFIG_CRC8) += test_crc8.o
|
||||||
obj-$(CONFIG_UT_LIB_CRYPT) += test_crypt.o
|
obj-$(CONFIG_UT_LIB_CRYPT) += test_crypt.o
|
||||||
|
obj-$(CONFIG_UT_TIME) += time.o
|
||||||
obj-$(CONFIG_$(XPL_)UT_UNICODE) += unicode.o
|
obj-$(CONFIG_$(XPL_)UT_UNICODE) += unicode.o
|
||||||
obj-$(CONFIG_LIB_UUID) += uuid.o
|
obj-$(CONFIG_LIB_UUID) += uuid.o
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue