If timeout happen it should be reported as fault.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
State: pending
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')