Lines Matching refs:output
25 output = u_boot_console.run_command('gpt guid host 0')
26 assert '375a56f7-d6c9-4e81-b5f0-09d41ca89efe' in output
35 output = u_boot_console.run_command('gpt guid host 0 newguid')
36 output = u_boot_console.run_command('printenv newguid')
37 assert '375a56f7-d6c9-4e81-b5f0-09d41ca89efe' in output
47 output = u_boot_console.run_command('gpt read host 0')
48 assert 'name first' in output
50 output = u_boot_console.run_command('gpt read host 0')
51 assert 'name second' in output
62 output = u_boot_console.run_command('part list host 0')
63 assert '0x000007ff "first"' in output
64 assert '0x000017ff "second"' in output
66 output = u_boot_console.run_command('part list host 0')
67 assert '0x000007ff "second"' in output
68 assert '0x000017ff "first"' in output