| /test/stdint/ |
| A D | test-includes.sh | 15 out=/tmp/test-includes.tmp 30 rm -rf ${out} 31 mkdir -p ${out} 32 touch ${out}/config.h 33 mkdir -p ${out}/generated 34 touch ${out}/generated/generic-asm-offsets.h 35 mkdir -p ${out}/include/asm 37 ${out}/include/asm/arch 43 -I${out} -I${out}/include \
|
| /test/lib/ |
| A D | str.c | 26 char out[TEST_STR_SIZE]; in str_upper() local 34 strcpy(out, str2); in str_upper() 35 str_to_upper(out, out, SIZE_MAX); in str_upper() 43 strcpy(out, str2); in str_upper() 44 str_to_upper(out, out, 7); in str_upper() 48 out[1] = 0x7f; in str_upper() 54 out[0] = 0x7f; in str_upper() 69 strcpy(out, str); in run_strtoul() 71 str_to_upper(out, out, -1); in run_strtoul() 124 strcpy(out, str); in run_strtoull() [all …]
|
| A D | compression.c | 163 void *out, unsigned long out_max, in uncompress_using_gzip() argument 178 void *out, unsigned long out_max, in compress_using_bzip2() argument 197 void *out, unsigned long out_max, in uncompress_using_bzip2() argument 232 void *out, unsigned long out_max, in uncompress_using_lzma() argument 266 void *out, unsigned long out_max, in uncompress_using_lzo() argument 301 void *out, unsigned long out_max, in uncompress_using_lz4() argument 336 void *out, unsigned long out_max, in uncompress_using_zstd() argument 343 abuf_init_set(&out_buf, out, out_max); in uncompress_using_zstd() 357 goto out; \ 458 out: in run_test() [all …]
|
| A D | membuf.c | 38 char in[TEST_SIZE * 2], out[TEST_SIZE * 2]; in lib_test_membuf_one() local 64 ret = membuf_get(&mb, out, 0); in lib_test_membuf_one() 65 ret = membuf_get(&mb, out, size); in lib_test_membuf_one() 68 ret = membuf_get(&mb, out, 0); in lib_test_membuf_one() 71 ut_asserteq_mem(in, out, size); in lib_test_membuf_one()
|
| A D | test_aes.c | 100 goto out; in _lib_test_aes_run() 130 out: in _lib_test_aes_run()
|
| A D | unicode.c | 700 static void utf8_to_cp437_stream_helper(const char *in, char *out) in utf8_to_cp437_stream_helper() argument 709 *out++ = ret; in utf8_to_cp437_stream_helper() 711 *out = 0; in utf8_to_cp437_stream_helper() 731 static void utf8_to_utf32_stream_helper(const char *in, s32 *out) in utf8_to_utf32_stream_helper() argument 740 *out++ = ret; in utf8_to_utf32_stream_helper() 742 *out = 0; in utf8_to_utf32_stream_helper()
|
| /test/py/tests/ |
| A D | test_kconfig.py | 18 out = utils.run_and_log( 21 assert 'invalid_use_of_IF_ENABLED_INT' in out 22 assert 'invalid_use_of_CONFIG_IF_ENABLED_INT' in out 30 out = utils.run_and_log( 33 assert 'invalid_use_of_IF_ENABLED_INT' in out 37 assert 'invalid_use_of_CONFIG_IF_ENABLED_INT' not in out
|
| A D | test_trace.py | 30 out = ubman.run_command('trace stats') 66 print(out) 68 out = ubman.run_command( 84 out = ubman.run_command('trace stats') 109 out = utils.run_and_log( 134 assert '[Flyrecord tracing data]' in out 135 assert '4096 [Page size, bytes]' in out 185 out = utils.run_and_log( 213 for line in out.splitlines(): 237 for line in out.splitlines(): [all …]
|
| A D | test_of_migrate.py | 57 out = utils.run_and_log( 60 return out 72 out = utils.run_and_log( 75 assert "Video device 'lcd' cannot allocate frame buffer memory" in out 85 out = build_for_migrate(ubman, ['bootph-pre-ram', 'u-boot,dm-spl'], 90 assert "undefined type ‘struct dtd_sandbox_spl_test’" in out 102 out = utils.run_and_log( 105 assert "Warning: Device tree includes old 'u-boot,dm-' tags" in out
|
| A D | test_event_dump.py | 15 out = utils.run_and_log(ubman, ['scripts/event_dump.py', sandbox]) 25 assert re.match(expect, out, re.MULTILINE) is not None
|
| A D | test_ut.py | 306 out = utils.run_and_log(ubman, f'cgpt show -q {fname}') 323 for line in out.splitlines(): 402 out = utils.run_and_log(ubman, f'cgpt show -q {fname}') 405 for line in out.splitlines(): 456 out = utils.run_and_log(ubman, f'cgpt show -q {fname}') 459 for line in out.splitlines():
|
| /test/py/tests/test_fs/test_squashfs/ |
| A D | test_sqfs_load.py | 24 out = subprocess.run(['md5sum ' + path], shell=True, check=True, 26 checksum = out.stdout.split()[0] 42 out = ubman.run_command('md5sum {} {}'.format(address, count)) 43 checksum = out.split()[-1] 58 out = ubman.run_command('sqfsload host 0 {} {}'.format(address, file)) 61 assert size in out 106 out = ubman.run_command('sqfsload host 0 {} {}'.format(address, file)) 107 assert 'Failed to load' in out
|
| A D | sqfs_common.py | 146 out = subprocess.run(['mksquashfs -version'], shell=True, check=True, 149 return out.stdout.split()[2].split('.')[0:2] 173 for out, opts in zip(STANDARD_TABLE.keys(), STANDARD_TABLE.values()): 174 output_path = os.path.join(build_dir, out) 178 for out, opts in zip(EXTRA_TABLE.keys(), EXTRA_TABLE.values()): 179 output_path = os.path.join(build_dir, out)
|
| /test/py/tests/test_fs/ |
| A D | conftest.py | 245 out = check_output( 252 out = check_output( 258 out = check_output( 264 out = check_output( 270 out = check_output( 276 out = check_output( 339 out = check_output( 536 out = check_output( 539 md5val = [out.split()[0]] 540 out = check_output( [all …]
|
| A D | test_erofs.py | 119 out = ubman.run_command('erofsload host 0 {} {}'.format(address, file)) 122 assert size in out 125 out = ubman.run_command('md5sum {} {}'.format(address, hex(int(size)))) 126 u_boot_checksum = out.split()[-1] 130 out = subprocess.run(['md5sum ' + original_file_path], shell=True, check=True, 132 original_checksum = out.stdout.split()[0] 170 out = ubman.run_command('erofsload host 0 {} {}'.format(address, file)) 171 assert 'Failed to load' in out
|
| /test/dm/ |
| A D | tee.c | 82 goto out; in invoke_func_rpc_test() 87 out: in invoke_func_rpc_test() 207 goto out; in dm_test_tee() 211 out: in dm_test_tee()
|
| A D | ofnode.c | 765 const char *out; in dm_test_ofnode_string() local 785 &out)); in dm_test_ofnode_string() 786 ut_asserteq_str("mux0", out); in dm_test_ofnode_string() 800 &out)); in dm_test_ofnode_string() 801 ut_asserteq_str("mux4", out); in dm_test_ofnode_string() 813 const char *out; in dm_test_ofnode_string_err() local 826 &out)); in dm_test_ofnode_string_err() 832 &out)); in dm_test_ofnode_string_err() 839 &out)); in dm_test_ofnode_string_err() 845 &out)); in dm_test_ofnode_string_err() [all …]
|
| /test/image/ |
| A D | spl_load.c | 69 goto out; in create_legacy() 85 out: in create_legacy() 102 goto out; in create_imx8() 116 out: in create_imx8() 185 goto out; in create_fit() 239 out: in create_fit()
|
| A D | spl_load_fs.c | 82 goto out; in create_ext2() 148 out: in create_ext2() 209 goto out; in create_fat() 250 out: in create_fat()
|
| /test/fdt_overlay/ |
| A D | cmd_ut_fdt_overlay.c | 86 const char **out) in fdt_getprop_str() argument 95 *out = fdt_stringlist_get(fdt, node_off, name, 0, &len); in fdt_getprop_str()
|