Kconfig 1.1 KB

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