xref: /rk3399_rockchip-uboot/test/Kconfig (revision fcdd83d4455871c49a93236c3f1cb964727f8c0c)
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.
8
9config UT_TIME
10	bool "Unit tests for time functions"
11	depends on UNIT_TEST
12	help
13	  Enables the 'ut time' command which tests that the time functions
14	  work correctly. The test is fairly simple and will not catch all
15	  problems. But if you are having problems with udelay() and the like,
16	  this is a good place to start.
17
18config TEST_ROCKCHIP
19	bool "test Rockchip board modules"
20	depends on ARCH_ROCKCHIP
21	help
22	  This enables the test function for rockchip board modules.
23
24config LAVA_INFO
25	bool "Display test info need by LAVA system"
26	depends on TEST_ROCKCHIP
27	help
28	  This enable the print info need by LAVA system
29
30source "test/dm/Kconfig"
31source "test/env/Kconfig"
32source "test/overlay/Kconfig"
33