u_boot_console.run_command('setenv autoload no')
output = u_boot_console.run_command('dhcp')
+ assert 'TIMEOUT' not in output
assert 'DHCP client bound to address ' in output
global net_set_up
pytest.skip('Network not initialized')
output = u_boot_console.run_command('ping $serverip')
+ assert 'TIMEOUT' not in output
assert 'is alive' in output
@pytest.mark.buildconfigspec('cmd_net')
sz = f.get('size', None)
if sz:
expected_text += '%d' % sz
+ assert 'TIMEOUT' not in output
assert expected_text in output
expected_crc = f.get('crc32', None)