Lines Matching refs:output

79     output = u_boot_console.run_command('gpt read host 0')
80 assert 'Start 1MiB, size 1MiB' in output
81 assert 'Block size 512, name part1' in output
82 assert 'Start 2MiB, size 1MiB' in output
83 assert 'Block size 512, name part2' in output
84 output = u_boot_console.run_command('part list host 0')
85 assert '0x00000800 0x00000fff "part1"' in output
86 assert '0x00001000 0x00001bff "part2"' in output
95 output = u_boot_console.run_command('gpt verify host 0')
96 assert 'Verify GPT: success!' in output
105 output = u_boot_console.run_command('gpt guid host 0')
106 assert '375a56f7-d6c9-4e81-b5f0-09d41ca89efe' in output
117 output = u_boot_console.run_command('gpt guid host 0 newguid')
118 output = u_boot_console.run_command('printenv newguid')
119 assert '375a56f7-d6c9-4e81-b5f0-09d41ca89efe' in output
131 output = u_boot_console.run_command('gpt read host 0')
132 assert 'name first' in output
134 output = u_boot_console.run_command('gpt read host 0')
135 assert 'name second' in output
136 output = u_boot_console.run_command('part list host 0')
137 assert '0x00000800 0x00000fff "first"' in output
138 assert '0x00001000 0x00001bff "second"' in output
149 output = u_boot_console.run_command('part list host 0')
150 assert '0x00000800 0x00000fff "first"' in output
151 assert '0x00001000 0x00001bff "second"' in output
153 output = u_boot_console.run_command('part list host 0')
154 assert '0x00000800 0x00000fff "second"' in output
155 assert '0x00001000 0x00001bff "first"' in output
165 output = u_boot_console.run_command('gpt write host 0 "name=all,size=0"')
166 assert 'Writing GPT: success!' in output
167 output = u_boot_console.run_command('part list host 0')
168 assert '0x00000022 0x00001fde "all"' in output
169output = u_boot_console.run_command('gpt write host 0 "uuid_disk=375a56f7-d6c9-4e81-b5f0-09d41ca89…
170 assert 'Writing GPT: success!' in output
171 output = u_boot_console.run_command('part list host 0')
172 assert '0x00000800 0x00000fff "first"' in output
173 assert '0x00001000 0x00001bff "second"' in output
174 output = u_boot_console.run_command('gpt guid host 0')
175 assert '375a56f7-d6c9-4e81-b5f0-09d41ca89efe' in output