X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=test%2FKconfig;h=de16d179d0797940c540466ee51775eec0a23079;hb=ed47097a04d52f3f5fb1524c552dbeafb1156396;hp=32a974e28c8a82986bde2b3327933e0c757edff1;hpb=c812f722f8bdf2785cfebf4fd272afe2117d6469;p=oweals%2Fu-boot.git diff --git a/test/Kconfig b/test/Kconfig index 32a974e28c..de16d179d0 100644 --- a/test/Kconfig +++ b/test/Kconfig @@ -1,13 +1,28 @@ -config UNIT_TEST - bool +menuconfig UNIT_TEST + bool "Unit tests" + help + Select this to compile in unit tests for various parts of + U-Boot. Test suites will be subcommands of the "ut" command. + This does not require sandbox to be included, but it is most + often used there. config UT_TIME bool "Unit tests for time functions" - select UNIT_TEST + depends on UNIT_TEST help Enables the 'ut time' command which tests that the time functions work correctly. The test is fairly simple and will not catch all problems. But if you are having problems with udelay() and the like, this is a good place to start. +config UT_UNICODE + bool "Unit tests for Unicode functions" + depends on UNIT_TEST + default y + help + Enables the 'ut unicode' command which tests that the functions for + manipulating Unicode strings work correctly. + source "test/dm/Kconfig" +source "test/env/Kconfig" +source "test/overlay/Kconfig"