Kconfig 881 B

12345678910111213141516171819202122232425262728
  1. menuconfig 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. config UT_TIME
  9. bool "Unit tests for time functions"
  10. depends on UNIT_TEST
  11. help
  12. Enables the 'ut time' command which tests that the time functions
  13. work correctly. The test is fairly simple and will not catch all
  14. problems. But if you are having problems with udelay() and the like,
  15. this is a good place to start.
  16. config UT_UNICODE
  17. bool "Unit tests for Unicode functions"
  18. depends on UNIT_TEST
  19. default y
  20. help
  21. Enables the 'ut unicode' command which tests that the functions for
  22. manipulating Unicode strings work correctly.
  23. source "test/dm/Kconfig"
  24. source "test/env/Kconfig"
  25. source "test/overlay/Kconfig"