test: Move unicode_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>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Tested-by: Tom Rini <trini@konsulko.com> # rpi_3, rpi_4, rpi_arm64, am64x_evm_a53, am64-sk
This commit is contained in:
Simon Glass 2024-11-02 13:36:59 -06:00 committed by Tom Rini
parent 4563fb42f8
commit 7a27d4187a
3 changed files with 1 additions and 1 deletions

View file

@ -21,7 +21,6 @@ ifeq ($(CONFIG_XPL_BUILD),)
obj-y += boot/ obj-y += boot/
obj-$(CONFIG_UNIT_TEST) += common/ obj-$(CONFIG_UNIT_TEST) += common/
obj-y += log/ obj-y += log/
obj-$(CONFIG_$(XPL_)UT_UNICODE) += unicode_ut.o
else else
obj-$(CONFIG_SPL_UT_LOAD) += image/ obj-$(CONFIG_SPL_UT_LOAD) += image/
endif endif

View file

@ -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_$(XPL_)UT_UNICODE) += unicode.o
obj-$(CONFIG_LIB_UUID) += uuid.o obj-$(CONFIG_LIB_UUID) += uuid.o
else else
obj-$(CONFIG_SANDBOX) += kconfig_spl.o obj-$(CONFIG_SANDBOX) += kconfig_spl.o