Blame view

test/Kconfig 1.05 KB
feb384725   Joe Hershberger   test: Move the un...
1
2
3
4
5
6
7
  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.
e721b882e   Joe Hershberger   test: Generalize ...
8

2dd0111ad   Heinrich Schuchardt   test: provide uni...
9
10
11
12
13
14
15
  config UT_LIB
  	bool "Unit tests for library functions"
  	depends on UNIT_TEST
  	default y
  	help
  	  Enables the 'ut lib' command which tests library functions like
  	  memcat(), memcyp(), memmove().
c812f722f   Joe Hershberger   test: dm: Move th...
16
  config UT_TIME
8271f5d4c   Simon Glass   test: Add a simpl...
17
  	bool "Unit tests for time functions"
feb384725   Joe Hershberger   test: Move the un...
18
  	depends on UNIT_TEST
8271f5d4c   Simon Glass   test: Add a simpl...
19
  	help
c812f722f   Joe Hershberger   test: dm: Move th...
20
  	  Enables the 'ut time' command which tests that the time functions
8271f5d4c   Simon Glass   test: Add a simpl...
21
22
23
  	  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.
f11a164b5   Heinrich Schuchardt   test: unit tests ...
24
25
26
27
28
29
30
  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.
1967982a9   Simon Glass   dm: test: Add a K...
31
  source "test/dm/Kconfig"
421f86f32   Joe Hershberger   test: env: Add te...
32
  source "test/env/Kconfig"
f2a9942fb   Maxime Ripard   tests: Introduce ...
33
  source "test/overlay/Kconfig"