blob: ab3ac54a1b2fcec84c67a4e9a3062996e182aee5 [file] [log] [blame]
Joe Hershbergerfeb38472015-05-20 14:27:31 -05001menuconfig 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.
Joe Hershbergere721b882015-05-20 14:27:27 -05008
Simon Glassba96be42020-10-25 20:38:26 -06009config SPL_UNIT_TEST
10 bool "Unit tests in SPL"
11 # We need to be able to unbind devices for tests to work
12 select SPL_DM_DEVICE_REMOVE
13 help
14 Select this to enable unit tests in SPL. Most test are designed for
15 running in U-Boot proper, but some are intended for SPL, such as
16 of-platdata and SPL handover. To run these tests with the sandbox_spl
17 board, use the -u (unit test) option.
18
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +010019config UT_LIB
20 bool "Unit tests for library functions"
21 depends on UNIT_TEST
22 default y
23 help
24 Enables the 'ut lib' command which tests library functions like
AKASHI Takahirof523400f2019-11-13 09:45:02 +090025 memcat(), memcyp(), memmove() and ASN1 compiler/decoder.
26
27if UT_LIB
28
29config UT_LIB_ASN1
30 bool "Unit test for asn1 compiler and decoder function"
31 default y
32 imply ASYMMETRIC_KEY_TYPE
33 imply ASYMMETRIC_PUBLIC_KEY_SUBTYPE
34 imply X509_CERTIFICATE_PARSER
35 imply PKCS7_MESSAGE_PARSER
36 imply RSA_PUBLIC_KEY_PARSER
37 help
38 Enables a test which exercises asn1 compiler and decoder function
39 via various parsers.
40
AKASHI Takahirod090b392020-02-21 15:13:00 +090041config UT_LIB_RSA
42 bool "Unit test for rsa_verify() function"
43 depends on RSA
44 depends on RSA_VERIFY_WITH_PKEY
45 select IMAGE_SIGN_INFO
46 default y
47 help
48 Enables rsa_verify() test, currently rsa_verify_with_pkey only()
49 only, at the 'ut lib' command.
50
AKASHI Takahirof523400f2019-11-13 09:45:02 +090051endif
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +010052
Heinrich Schuchardtde429d72020-10-31 08:59:25 +010053config UT_COMPRESSION
54 bool "Unit test for compression"
55 depends on UNIT_TEST
56 depends on CMDLINE && GZIP_COMPRESSED && BZIP2 && LZMA && LZO && LZ4
57 default y
58 help
59 Enables tests for compression and decompression routines for simple
60 sanity and for buffer overflow conditions.
61
Heinrich Schuchardt395041b2020-02-26 21:48:18 +010062config UT_LOG
63 bool "Unit tests for logging functions"
64 depends on UNIT_TEST
65 default y
66 help
67 Enables the 'ut log' command which tests logging functions like
68 log_err().
69 See also CONFIG_LOG_TEST which provides the 'log test' command.
70
Joe Hershbergerc812f722015-05-20 14:27:30 -050071config UT_TIME
Simon Glass8271f5d2015-05-02 09:25:02 -060072 bool "Unit tests for time functions"
Joe Hershbergerfeb38472015-05-20 14:27:31 -050073 depends on UNIT_TEST
Simon Glass8271f5d2015-05-02 09:25:02 -060074 help
Joe Hershbergerc812f722015-05-20 14:27:30 -050075 Enables the 'ut time' command which tests that the time functions
Simon Glass8271f5d2015-05-02 09:25:02 -060076 work correctly. The test is fairly simple and will not catch all
77 problems. But if you are having problems with udelay() and the like,
78 this is a good place to start.
79
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +020080config UT_UNICODE
81 bool "Unit tests for Unicode functions"
82 depends on UNIT_TEST
83 default y
84 help
85 Enables the 'ut unicode' command which tests that the functions for
86 manipulating Unicode strings work correctly.
87
Simon Glass19679822015-02-05 21:41:37 -070088source "test/dm/Kconfig"
Joe Hershberger421f86f2015-05-20 14:27:36 -050089source "test/env/Kconfig"
Heiko Stuebner96383bd2019-10-23 16:46:41 +020090source "test/optee/Kconfig"
Maxime Ripardf2a99422016-07-05 10:26:46 +020091source "test/overlay/Kconfig"