Blame view

test/Kconfig 663 Bytes
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

c812f722f   Joe Hershberger   test: dm: Move th...
9
  config UT_TIME
8271f5d4c   Simon Glass   test: Add a simpl...
10
  	bool "Unit tests for time functions"
feb384725   Joe Hershberger   test: Move the un...
11
  	depends on UNIT_TEST
8271f5d4c   Simon Glass   test: Add a simpl...
12
  	help
c812f722f   Joe Hershberger   test: dm: Move th...
13
  	  Enables the 'ut time' command which tests that the time functions
8271f5d4c   Simon Glass   test: Add a simpl...
14
15
16
  	  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.
1967982a9   Simon Glass   dm: test: Add a K...
17
  source "test/dm/Kconfig"
421f86f32   Joe Hershberger   test: env: Add te...
18
  source "test/env/Kconfig"
f2a9942fb   Maxime Ripard   tests: Introduce ...
19
  source "test/overlay/Kconfig"