/u-boot/test/py/tests/test_efi_secboot/ |
A D | test_authvar.py | 35 assert '00000000: 01' in output 50 assert 'PK:' in ''.join(output) 54 assert '00000000: 01' in output 57 assert '00000000: 00' in output 82 assert 'KEK:' in ''.join(output) 86 assert '00000000: 01' in output 100 assert 'db:' in ''.join(output) 104 assert '00000000: 01' in output 122 assert '00000000: 01' in output 142 assert 'db:' in ''.join(output) [all …]
|
A D | test_signed.py | 29 output = u_boot_console.run_command_list([ 34 assert 'Hello, world!' in ''.join(output) 38 output = u_boot_console.run_command_list([ 42 assert 'Hello, world!' in ''.join(output) 53 output = u_boot_console.run_command_list([ 60 output = u_boot_console.run_command_list([ 66 output = u_boot_console.run_command_list([ 75 output = u_boot_console.run_command_list([ 79 output = u_boot_console.run_command_list([ 84 output = u_boot_console.run_command_list([ [all …]
|
A D | test_unsigned.py | 29 output = u_boot_console.run_command_list([ 37 output = u_boot_console.run_command_list([ 41 assert '\'HELLO\' failed' in ''.join(output) 42 output = u_boot_console.run_command_list([ 56 output = u_boot_console.run_command_list([ 66 output = u_boot_console.run_command_list([ 70 assert 'Hello, world!' in ''.join(output) 80 output = u_boot_console.run_command_list([ 90 output = u_boot_console.run_command_list([ 95 output = u_boot_console.run_command_list([ [all …]
|
A D | test_signed_intca.py | 31 output = u_boot_console.run_command_list([ 41 output = u_boot_console.run_command_list([ 50 output = u_boot_console.run_command_list([ 54 assert 'Hello, world!' in ''.join(output) 64 output = u_boot_console.run_command_list([ 72 output = u_boot_console.run_command_list([ 81 output = u_boot_console.run_command_list([ 91 output = u_boot_console.run_command_list([ 96 assert 'Hello, world!' in ''.join(output) 106 output = u_boot_console.run_command_list([ [all …]
|
/u-boot/test/py/tests/ |
A D | test_pinmux.py | 10 output = u_boot_console.run_command('pinmux') 11 assert 'Usage:' in output 18 assert 'Usage:' in output 26 assert ('pinctrl-gpio:' in output) 30 assert ('pinctrl:' in output) 34 assert ('P3 : I2S SD.' in output) 35 assert ('P4 : I2S WS.' in output) 46 assert 'sandbox_pinctrl' in output 55 assert (expected_output in output) 64 assert (expected_output in output) [all …]
|
A D | test_gpt.py | 83 assert 'Start 1MiB, size 1MiB' in output 84 assert 'Block size 512, name part1' in output 85 assert 'Start 2MiB, size 1MiB' in output 86 assert 'Block size 512, name part2' in output 88 assert '0x00000800 0x00000fff "part1"' in output 99 assert 'Verify GPT: success!' in output 135 assert 'name first' in output 138 assert 'name second' in output 169 assert 'Writing GPT: success!' in output 171 assert '0x00000022 0x00001fde "all"' in output [all …]
|
A D | test_tpm2.py | 49 assert output.endswith('0') 60 assert output.endswith('0') 71 assert output.endswith('0') 83 assert output.endswith('0') 100 assert output.endswith('0') 104 assert output.endswith('0') 120 assert output.endswith('0') 125 assert output.endswith('0') 145 assert output.endswith('0') 168 assert output.endswith('0') [all …]
|
A D | test_fpga.py | 91 assert expected_tftp in output 105 assert expected_usage in output 111 assert expected_usage in output 136 assert expected_usage in output 209 assert expected_text in output 219 assert expected_text in output 226 assert expected_text in output 235 assert expected_text in output 268 assert expected in output 477 assert expected in output [all …]
|
A D | test_ofplatdata.py | 14 output = util.run_and_log(cons, [fdtgrep, '-l', dtb]) 16 assert "u-boot,dm-pre-reloc" not in output 17 assert "u-boot,dm-pre-proper" not in output 18 assert "u-boot,dm-spl" not in output 19 assert "u-boot,dm-tpl" not in output 21 assert "spl-test5" not in output 22 assert "spl-test6" not in output 23 assert "spl-test7" in output
|
A D | test_log.py | 23 output = cons.run_command('log format %s' % fmt) 24 assert output == '' 25 output = cons.run_command('log rec arch notice file.c 123 func msg') 26 assert output == expected_output 31 output = cons.run_command('log format') 32 assert output == 'Log format: clFLfm' 47 output = cons.get_spawn_output().replace('\r', '') 48 assert 'sandbox: starting...' in output 49 assert (not 'debug: main' in output)
|
A D | test_net.py | 90 output = u_boot_console.run_command('dhcp') 91 assert 'DHCP client bound to address ' in output 126 output = u_boot_console.run_command('ping $serverip') 127 assert 'is alive' in output 151 output = u_boot_console.run_command('tftpboot %s' % (fn)) 158 assert expected_text in output 167 output = u_boot_console.run_command('crc32 $fileaddr $filesize') 168 assert expected_crc in output 193 output = u_boot_console.run_command('nfs %x %s' % (addr, fn)) 198 assert expected_text in output [all …]
|
A D | test_efi_loader.py | 86 output = u_boot_console.run_command('dhcp') 87 assert 'DHCP client bound to address ' in output 131 output = u_boot_console.run_command('tftpboot %x %s' % (addr, fn)) 136 assert expected_text in output 145 output = u_boot_console.run_command('crc32 %x $filesize' % addr) 146 assert expected_crc in output 161 output = u_boot_console.run_command('bootefi %x' % addr) 163 assert expected_text in output 165 assert expected_text not in output 175 output = u_boot_console.run_command('bootefi hello') [all …]
|
/u-boot/test/py/tests/test_efi_capsule/ |
A D | test_capsule_firmware.py | 55 assert 'Old' in ''.join(output) 62 assert 'Old' in ''.join(output) 69 assert 'Test01' in ''.join(output) 84 assert 'Test01' in ''.join(output) 93 assert 'Test01' in ''.join(output) 99 assert 'u-boot:Old' in ''.join(output) 130 assert 'Old' in ''.join(output) 137 assert 'Old' in ''.join(output) 144 assert 'Test01' in ''.join(output) 204 assert 'Old' in ''.join(output) [all …]
|
/u-boot/test/py/tests/test_fs/ |
A D | test_ext.py | 26 output = u_boot_console.run_command_list([ 39 assert(md5val[0] in ''.join(output)) 62 assert(md5val[0] in ''.join(output)) 92 output = u_boot_console.run_command( 110 assert(md5val[1] in ''.join(output)) 125 output = u_boot_console.run_command( 143 assert(md5val[2] in ''.join(output)) 158 output = u_boot_console.run_command( 161 assert('0 bytes written' in output) 183 output = u_boot_console.run_command( [all …]
|
A D | test_basic.py | 26 output = u_boot_console.run_command_list([ 34 output = u_boot_console.run_command( 39 assert('' == output) 96 assert(md5val[0] in ''.join(output)) 115 assert(md5val[1] in ''.join(output)) 136 assert(md5val[2] in ''.join(output)) 157 assert(md5val[3] in ''.join(output)) 178 assert(md5val[4] in ''.join(output)) 199 assert(md5val[5] in ''.join(output)) 240 assert(md5val[0] in ''.join(output)) [all …]
|
A D | test_mkdir.py | 27 assert('dir1/' in ''.join(output)) 29 output = u_boot_console.run_command( 31 assert('./' in output) 32 assert('../' in output) 46 assert('dir2/' in ''.join(output)) 48 output = u_boot_console.run_command( 50 assert('./' in output) 51 assert('../' in output) 102 assert('dir6/' in ''.join(output)) 114 assert('./' in output) [all …]
|
A D | test_symlink.py | 27 output = u_boot_console.run_command_list([ 32 assert('' in ''.join(output)) 34 output = u_boot_console.run_command_list([ 43 assert(md5val[0] in ''.join(output)) 61 assert('' in ''.join(output)) 72 assert(md5val[0] in ''.join(output)) 87 assert('' in ''.join(output)) 97 assert(md5val[1] in ''.join(output)) 108 assert(md5val[1] in ''.join(output)) 122 assert('' in ''.join(output)) [all …]
|
A D | test_unlink.py | 24 output = u_boot_console.run_command_list([ 28 assert('' == ''.join(output)) 30 output = u_boot_console.run_command( 32 assert(not 'file1' in output) 33 assert('file2' in output) 48 assert('' == ''.join(output)) 50 output = u_boot_console.run_command( 52 assert('0 file(s), 2 dir(s)' in output) 76 assert('' == ''.join(output)) 78 output = u_boot_console.run_command( [all …]
|
/u-boot/arch/x86/lib/ |
A D | div64.c | 21 union overlay64 output; in __ashldi3() local 23 output.longw = num; in __ashldi3() 25 output.words.higher = output.words.lower << (shift - 32); in __ashldi3() 30 output.words.higher = (output.words.higher << shift) | in __ashldi3() 32 output.words.lower = output.words.lower << shift; in __ashldi3() 34 return output.longw; in __ashldi3() 41 output.longw = num; in __lshrdi3() 43 output.words.lower = output.words.higher >> (shift - 32); in __lshrdi3() 48 output.words.lower = output.words.lower >> shift | in __lshrdi3() 50 output.words.higher = output.words.higher >> shift; in __lshrdi3() [all …]
|
/u-boot/tools/dtoc/ |
A D | test_dtoc.py | 179 with open(output) as infile: 184 with open(output) as infile: 291 with open(output) as infile: 297 with open(output) as infile: 312 with open(output) as infile: 323 with open(output) as infile: 347 with open(output) as infile: 356 with open(output) as infile: 376 with open(output) as infile: 388 with open(output) as infile: [all …]
|
/u-boot/test/py/tests/test_android/ |
A D | test_ab.py | 66 output = u_boot_console.run_command('ab_select slot_name host 0#misc') 67 assert 're-initializing A/B metadata' in output 68 assert 'Attempting slot a, tries remaining 7' in output 69 output = u_boot_console.run_command('printenv slot_name') 70 assert 'slot_name=a' in output 72 output = u_boot_console.run_command('ab_select slot_name host 0:1') 73 assert 'Attempting slot b, tries remaining 7' in output 74 output = u_boot_console.run_command('printenv slot_name') 75 assert 'slot_name=b' in output
|
/u-boot/scripts/coccinelle/net/ |
A D | mdio_register.cocci | 36 - outputT *output 50 identifier update_read_sig.output; 59 + outputT output = 0; 63 + return *output; 70 + return *output; 76 + return *output; 82 identifier update_read_sig.output; 89 - *output 90 + output 92 - output [all …]
|
/u-boot/test/py/tests/test_fs/test_squashfs/ |
A D | test_sqfs_load.py | 28 output = u_boot_console.run_command("host bind 0 " + path) 30 output = u_boot_console.run_command(command + "xxx") 31 assert "File not found." in output 35 output = u_boot_console.run_command(command + f) 36 assert str(s) in output 42 output = u_boot_console.run_command(command + "sym") 43 assert str(opt.sizes[0]) in output
|
A D | test_sqfs_ls.py | 24 output = u_boot_console.run_command("host bind 0 " + path) 28 output = u_boot_console.run_command("sqfsls host 0") 29 assert str(len(opt.files) + 1) + " file(s), 0 dir(s)" in output 30 assert "<SYM> sym" in output 31 output = u_boot_console.run_command("sqfsls host 0 xxx") 32 assert "** Cannot find directory. **" in output
|
/u-boot/arch/arm/dts/ |
A D | keystone-clocks.dtsi | 23 clock-output-names = "mainmuxclk"; 32 clock-output-names = "chipclk1"; 178 clock-output-names = "usb"; 219 clock-output-names = "pa"; 239 clock-output-names = "sa"; 249 clock-output-names = "pcie"; 259 clock-output-names = "sr"; 269 clock-output-names = "gem0"; 369 clock-output-names = "usim"; 379 clock-output-names = "i2c"; [all …]
|