Simon Glass | 36778df | 2023-09-14 10:55:44 -0600 | [diff] [blame] | 1 | menu "Testing" |
Heinrich Schuchardt | 005acb2 | 2023-04-03 20:27:43 +0200 | [diff] [blame] | 2 | |
| 3 | config UNIT_TEST |
Joe Hershberger | feb3847 | 2015-05-20 14:27:31 -0500 | [diff] [blame] | 4 | bool "Unit tests" |
| 5 | help |
| 6 | Select this to compile in unit tests for various parts of |
| 7 | U-Boot. Test suites will be subcommands of the "ut" command. |
| 8 | This does not require sandbox to be included, but it is most |
| 9 | often used there. |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 10 | |
Simon Glass | ba96be4 | 2020-10-25 20:38:26 -0600 | [diff] [blame] | 11 | config SPL_UNIT_TEST |
| 12 | bool "Unit tests in SPL" |
Tom Rini | b340199 | 2022-06-10 23:03:09 -0400 | [diff] [blame] | 13 | depends on SPL |
Simon Glass | ba96be4 | 2020-10-25 20:38:26 -0600 | [diff] [blame] | 14 | # We need to be able to unbind devices for tests to work |
| 15 | select SPL_DM_DEVICE_REMOVE |
| 16 | help |
| 17 | Select this to enable unit tests in SPL. Most test are designed for |
| 18 | running in U-Boot proper, but some are intended for SPL, such as |
| 19 | of-platdata and SPL handover. To run these tests with the sandbox_spl |
| 20 | board, use the -u (unit test) option. |
| 21 | |
Heinrich Schuchardt | 2dd0111 | 2019-01-30 07:53:31 +0100 | [diff] [blame] | 22 | config UT_LIB |
| 23 | bool "Unit tests for library functions" |
| 24 | depends on UNIT_TEST |
Simon Glass | 29784d6 | 2022-08-01 07:57:59 -0600 | [diff] [blame] | 25 | default y if !SANDBOX_VPL |
Heinrich Schuchardt | 2dd0111 | 2019-01-30 07:53:31 +0100 | [diff] [blame] | 26 | help |
| 27 | Enables the 'ut lib' command which tests library functions like |
AKASHI Takahiro | f523400f | 2019-11-13 09:45:02 +0900 | [diff] [blame] | 28 | memcat(), memcyp(), memmove() and ASN1 compiler/decoder. |
| 29 | |
| 30 | if UT_LIB |
| 31 | |
| 32 | config UT_LIB_ASN1 |
| 33 | bool "Unit test for asn1 compiler and decoder function" |
| 34 | default y |
| 35 | imply ASYMMETRIC_KEY_TYPE |
| 36 | imply ASYMMETRIC_PUBLIC_KEY_SUBTYPE |
| 37 | imply X509_CERTIFICATE_PARSER |
| 38 | imply PKCS7_MESSAGE_PARSER |
| 39 | imply RSA_PUBLIC_KEY_PARSER |
| 40 | help |
| 41 | Enables a test which exercises asn1 compiler and decoder function |
| 42 | via various parsers. |
| 43 | |
Steffen Jaeckel | 26dd993 | 2021-07-08 15:57:33 +0200 | [diff] [blame] | 44 | config UT_LIB_CRYPT |
| 45 | bool "Unit test for crypt-style password hashing" |
| 46 | depends on !SPL && AUTOBOOT_KEYED && AUTOBOOT_ENCRYPTION |
| 47 | default y |
| 48 | select CRYPT_PW |
| 49 | select CRYPT_PW_SHA256 |
| 50 | select CRYPT_PW_SHA512 |
| 51 | help |
| 52 | Enables a test for the crypt-style password hash functions. |
| 53 | |
AKASHI Takahiro | d090b39 | 2020-02-21 15:13:00 +0900 | [diff] [blame] | 54 | config UT_LIB_RSA |
| 55 | bool "Unit test for rsa_verify() function" |
| 56 | depends on RSA |
| 57 | depends on RSA_VERIFY_WITH_PKEY |
| 58 | select IMAGE_SIGN_INFO |
| 59 | default y |
| 60 | help |
| 61 | Enables rsa_verify() test, currently rsa_verify_with_pkey only() |
| 62 | only, at the 'ut lib' command. |
| 63 | |
AKASHI Takahiro | f523400f | 2019-11-13 09:45:02 +0900 | [diff] [blame] | 64 | endif |
Heinrich Schuchardt | 2dd0111 | 2019-01-30 07:53:31 +0100 | [diff] [blame] | 65 | |
Heinrich Schuchardt | de429d7 | 2020-10-31 08:59:25 +0100 | [diff] [blame] | 66 | config UT_COMPRESSION |
| 67 | bool "Unit test for compression" |
| 68 | depends on UNIT_TEST |
Brandon Maier | 65d373a | 2023-01-12 10:27:46 -0600 | [diff] [blame] | 69 | depends on CMDLINE && GZIP_COMPRESSED && BZIP2 && LZMA && LZO && LZ4 && ZSTD |
Heinrich Schuchardt | de429d7 | 2020-10-31 08:59:25 +0100 | [diff] [blame] | 70 | default y |
| 71 | help |
| 72 | Enables tests for compression and decompression routines for simple |
| 73 | sanity and for buffer overflow conditions. |
| 74 | |
Heinrich Schuchardt | 395041b | 2020-02-26 21:48:18 +0100 | [diff] [blame] | 75 | config UT_LOG |
| 76 | bool "Unit tests for logging functions" |
| 77 | depends on UNIT_TEST |
| 78 | default y |
| 79 | help |
| 80 | Enables the 'ut log' command which tests logging functions like |
| 81 | log_err(). |
| 82 | See also CONFIG_LOG_TEST which provides the 'log test' command. |
| 83 | |
Joe Hershberger | c812f72 | 2015-05-20 14:27:30 -0500 | [diff] [blame] | 84 | config UT_TIME |
Simon Glass | 8271f5d | 2015-05-02 09:25:02 -0600 | [diff] [blame] | 85 | bool "Unit tests for time functions" |
Joe Hershberger | feb3847 | 2015-05-20 14:27:31 -0500 | [diff] [blame] | 86 | depends on UNIT_TEST |
Simon Glass | 8271f5d | 2015-05-02 09:25:02 -0600 | [diff] [blame] | 87 | help |
Joe Hershberger | c812f72 | 2015-05-20 14:27:30 -0500 | [diff] [blame] | 88 | Enables the 'ut time' command which tests that the time functions |
Simon Glass | 8271f5d | 2015-05-02 09:25:02 -0600 | [diff] [blame] | 89 | work correctly. The test is fairly simple and will not catch all |
| 90 | problems. But if you are having problems with udelay() and the like, |
| 91 | this is a good place to start. |
| 92 | |
Heinrich Schuchardt | f11a164 | 2018-08-31 21:31:28 +0200 | [diff] [blame] | 93 | config UT_UNICODE |
| 94 | bool "Unit tests for Unicode functions" |
| 95 | depends on UNIT_TEST |
| 96 | default y |
Heinrich Schuchardt | d30924f | 2022-05-02 06:27:00 +0200 | [diff] [blame] | 97 | select CHARSET |
Heinrich Schuchardt | f11a164 | 2018-08-31 21:31:28 +0200 | [diff] [blame] | 98 | help |
| 99 | Enables the 'ut unicode' command which tests that the functions for |
| 100 | manipulating Unicode strings work correctly. |
| 101 | |
Simon Glass | 1967982 | 2015-02-05 21:41:37 -0700 | [diff] [blame] | 102 | source "test/dm/Kconfig" |
Joe Hershberger | 421f86f | 2015-05-20 14:27:36 -0500 | [diff] [blame] | 103 | source "test/env/Kconfig" |
Sean Anderson | c56468a6 | 2023-10-14 16:47:57 -0400 | [diff] [blame] | 104 | source "test/image/Kconfig" |
Simon Glass | 29784d6 | 2022-08-01 07:57:59 -0600 | [diff] [blame] | 105 | source "test/lib/Kconfig" |
Heiko Stuebner | 96383bd | 2019-10-23 16:46:41 +0200 | [diff] [blame] | 106 | source "test/optee/Kconfig" |
Maxime Ripard | f2a9942 | 2016-07-05 10:26:46 +0200 | [diff] [blame] | 107 | source "test/overlay/Kconfig" |
Heinrich Schuchardt | 005acb2 | 2023-04-03 20:27:43 +0200 | [diff] [blame] | 108 | |
Simon Glass | 36778df | 2023-09-14 10:55:44 -0600 | [diff] [blame] | 109 | config POST |
| 110 | bool "Power On Self Test support" |
| 111 | help |
| 112 | See doc/README.POST for more details |
| 113 | |
Heinrich Schuchardt | 005acb2 | 2023-04-03 20:27:43 +0200 | [diff] [blame] | 114 | endmenu |