Lines Matching refs:output

82     output = u_boot_console.run_command('gpt read host 0')
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
87 output = u_boot_console.run_command('part list host 0')
88 assert '0x00000800 0x00000fff "part1"' in output
89 assert '0x00001000 0x00001bff "part2"' in output
98 output = u_boot_console.run_command('gpt verify host 0')
99 assert 'Verify GPT: success!' in output
108 output = u_boot_console.run_command('gpt guid host 0')
109 assert '375a56f7-d6c9-4e81-b5f0-09d41ca89efe' in output
120 output = u_boot_console.run_command('gpt guid host 0 newguid')
121 output = u_boot_console.run_command('printenv newguid')
122 assert '375a56f7-d6c9-4e81-b5f0-09d41ca89efe' in output
134 output = u_boot_console.run_command('gpt read host 0')
135 assert 'name first' in output
137 output = u_boot_console.run_command('gpt read host 0')
138 assert 'name second' in output
139 output = u_boot_console.run_command('part list host 0')
140 assert '0x00000800 0x00000fff "first"' in output
141 assert '0x00001000 0x00001bff "second"' in output
152 output = u_boot_console.run_command('part list host 0')
153 assert '0x00000800 0x00000fff "first"' in output
154 assert '0x00001000 0x00001bff "second"' in output
156 output = u_boot_console.run_command('part list host 0')
157 assert '0x00000800 0x00000fff "second"' in output
158 assert '0x00001000 0x00001bff "first"' in output
168 output = u_boot_console.run_command('gpt write host 0 "name=all,size=0"')
169 assert 'Writing GPT: success!' in output
170 output = u_boot_console.run_command('part list host 0')
171 assert '0x00000022 0x00001fde "all"' in output
172output = u_boot_console.run_command('gpt write host 0 "uuid_disk=375a56f7-d6c9-4e81-b5f0-09d41ca89…
173 assert 'Writing GPT: success!' in output
174 output = u_boot_console.run_command('part list host 0')
175 assert '0x00000800 0x00000fff "first"' in output
176 assert '0x00001000 0x00001bff "second"' in output
177 output = u_boot_console.run_command('gpt guid host 0')
178 assert '375a56f7-d6c9-4e81-b5f0-09d41ca89efe' in output