| /test/dm/ |
| A D | part.c | 66 test(0, NULL, true); in dm_test_part() 67 test(0, "", true); in dm_test_part() 69 test(1, NULL, false); in dm_test_part() 70 test(1, "", false); in dm_test_part() 71 test(1, "-", false); in dm_test_part() 74 test(0, "0", true); in dm_test_part() 75 test(0, ":0", true); in dm_test_part() 76 test(0, ".0", true); in dm_test_part() 79 test(1, "2", false); in dm_test_part() 80 test(1, "2", true); in dm_test_part() [all …]
|
| A D | Kconfig | 2 bool "Enable driver model unit test command"
|
| /test/ |
| A D | test-main.c | 201 if (!(test->flags & UTF_DM)) in ut_test_run_on_flattree() 270 struct unit_test *test; in ut_list_has_dm_tests() local 272 for (test = tests; test < tests + count; test++) { in ut_list_has_dm_tests() 353 if (test->flags & UTF_DM) in test_pre_run() 426 if (test->flags & UTF_DM) in test_post_run() 491 ret = test->func(uts); in ut_run_test() 534 ret = ut_run_test(uts, test, leaf ?: test->name); in ut_run_test_live_flat() 562 ret = ut_run_test(uts, test, leaf ?: test->name); in ut_run_test_live_flat() 613 for (test = tests; test < tests + count; test++) { in ut_run_tests() 615 one = test; in ut_run_tests() [all …]
|
| A D | Kconfig | 21 board, use the -u (unit test) option. 26 bool "Report unit-test duration" 56 bool "Unit test for crypt-style password hashing" 66 bool "Unit test for rsa_verify() function" 83 bool "Unit test for compression" 114 source "test/dm/Kconfig" 115 source "test/env/Kconfig" 116 source "test/image/Kconfig" 117 source "test/lib/Kconfig" 118 source "test/optee/Kconfig" [all …]
|
| /test/fdt_overlay/ |
| A D | test-fdt-overlay.dtso | 13 target = <&test>; 16 test-int-property = <43>; 22 target = <&test>; 25 test-str-property = "foobar"; 31 target = <&test>; 34 test-str-property-2 = "foobar2"; 40 target = <&test>; 74 test-phandle = <&test>, <&local>; 87 target = <&test>; 90 sub-test-node { [all …]
|
| A D | test-fdt-base.dts | 10 test: test-node { label 11 test-int-property = <42>; 12 test-str-property = "foo"; 14 subtest: sub-test-node { 15 sub-test-property;
|
| A D | test-fdt-overlay-stacked.dtso | 17 stacked-test-int-property = <43>;
|
| /test/lib/ |
| A D | test_sha256_hkdf.c | 177 struct test_sha256_hkdf_s *test) in lib_test_sha256_hkdf_run() argument 179 return _lib_test_sha256_hkdf_run(uts, test->salt, test->saltlen, in lib_test_sha256_hkdf_run() 180 test->ikm, test->ikmlen, in lib_test_sha256_hkdf_run() 181 test->info, test->infolen, in lib_test_sha256_hkdf_run() 182 test->expected, test->expectedlen); in lib_test_sha256_hkdf_run()
|
| A D | test_sha256_hmac.c | 274 struct test_sha256_hmac_s *test) in lib_test_sha256_hmac_run() argument 276 return _lib_test_sha256_hmac_run(uts, test->key, test->keylen, in lib_test_sha256_hmac_run() 277 test->input, test->ilen, in lib_test_sha256_hmac_run() 278 test->expected, test->elen); in lib_test_sha256_hmac_run()
|
| A D | Kconfig | 8 This is used to test that the IF_ENABLED_INT() macro causes a build error 14 bool "Provide a value for the Kconfig test" 19 int "Value used in Kconfig test"
|
| A D | test_aes.c | 143 struct test_aes_s *test) in lib_test_aes_run() argument 145 int key_len = test->key_len; in lib_test_aes_run() 146 int key_exp_len = test->key_exp_len; in lib_test_aes_run() 147 int type = test->type; in lib_test_aes_run() 148 int num_block = test->num_block; in lib_test_aes_run()
|
| /test/py/ |
| A D | pytest.ini | 9 boardspec: U-Boot: Describes the set of boards a test can/can't run on. 12 requiredtool: U-Boot: Required host tools for a test. 13 slow: U-Boot: Specific test will run slowly. 15 role: U-Boot: Indicates the lab 'role' which can execute this test
|
| A D | conftest.py | 641 for test in tests_warning: 642 anchor = anchors.get(test, None) 646 for test in tests_skipped: 647 anchor = anchors.get(test, None) 651 for test in tests_xpassed: 652 anchor = anchors.get(test, None) 656 for test in tests_xfailed: 657 anchor = anchors.get(test, None) 661 for test in tests_failed: 662 anchor = anchors.get(test, None) [all …]
|
| /test/py/tests/vboot/ |
| A D | sandbox-binman.dts | 21 filename = "test.fit";
|
| A D | sandbox-binman-pss.dts | 22 filename = "test.fit";
|
| A D | simple-images.its | 11 data = /incbin/("test-kernel.bin");
|
| A D | sign-images-algo-arg.its | 9 data = /incbin/("test-kernel.bin");
|
| A D | sign-configs-algo-arg.its | 9 data = /incbin/("test-kernel.bin");
|
| A D | sign-configs-sha384.its | 9 data = /incbin/("test-kernel.bin");
|
| A D | sign-images-sha1.its | 9 data = /incbin/("test-kernel.bin");
|
| A D | sign-images-sha256.its | 9 data = /incbin/("test-kernel.bin");
|
| A D | sign-images-sha384.its | 9 data = /incbin/("test-kernel.bin");
|
| A D | sign-configs-sha1.its | 9 data = /incbin/("test-kernel.bin");
|
| A D | sign-configs-sha256.its | 9 data = /incbin/("test-kernel.bin");
|
| /test/py/tests/ |
| A D | source.its | 4 description = "FIT image to test the source command";
|