]> git.ipfire.org Git - thirdparty/u-boot.git/blame - test/Kconfig
sysreset: switch to using SYSRESET_POWER_OFF for poweroff
[thirdparty/u-boot.git] / test / Kconfig
CommitLineData
feb38472
JH
1menuconfig UNIT_TEST
2 bool "Unit tests"
3 help
4 Select this to compile in unit tests for various parts of
5 U-Boot. Test suites will be subcommands of the "ut" command.
6 This does not require sandbox to be included, but it is most
7 often used there.
e721b882 8
2dd0111a
HS
9config UT_LIB
10 bool "Unit tests for library functions"
11 depends on UNIT_TEST
12 default y
13 help
14 Enables the 'ut lib' command which tests library functions like
15 memcat(), memcyp(), memmove().
16
c812f722 17config UT_TIME
8271f5d4 18 bool "Unit tests for time functions"
feb38472 19 depends on UNIT_TEST
8271f5d4 20 help
c812f722 21 Enables the 'ut time' command which tests that the time functions
8271f5d4
SG
22 work correctly. The test is fairly simple and will not catch all
23 problems. But if you are having problems with udelay() and the like,
24 this is a good place to start.
25
f11a164b
HS
26config UT_UNICODE
27 bool "Unit tests for Unicode functions"
28 depends on UNIT_TEST
29 default y
30 help
31 Enables the 'ut unicode' command which tests that the functions for
32 manipulating Unicode strings work correctly.
33
1967982a 34source "test/dm/Kconfig"
421f86f3 35source "test/env/Kconfig"
f2a9942f 36source "test/overlay/Kconfig"