Lines Matching refs:output
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')
177 assert expected_text in output
196 … output = u_boot_console.run_command('lsefisystab', wait_for_prompt=False, wait_for_echo=False)