Lines Matching +full:no +full:- +full:output
1 # SPDX-License-Identifier: GPL-2.0
4 # Test various network-related functionality, such as the dhcp, ping, and
44 'fn': 'ubtest-readable.bin',
53 'fn': 'ubtest-readable.bin',
87 pytest.skip('No DHCP server available')
89 u_boot_console.run_command('setenv autoload no')
90 output = u_boot_console.run_command('dhcp')
91 assert 'DHCP client bound to address ' in output
106 pytest.skip('No static network configuration is defined')
120 ping command's output.
126 output = u_boot_console.run_command('ping $serverip')
127 assert 'is alive' in output
145 pytest.skip('No TFTP readable file to read')
151 output = u_boot_console.run_command('tftpboot %s' % (fn))
153 output = u_boot_console.run_command('tftpboot %x %s' % (addr, fn))
158 assert expected_text in output
167 output = u_boot_console.run_command('crc32 $fileaddr $filesize')
168 assert expected_crc in output
186 pytest.skip('No NFS readable file to read')
193 output = u_boot_console.run_command('nfs %x %s' % (addr, fn))
198 assert expected_text in output
207 output = u_boot_console.run_command('crc32 %x $filesize' % addr)
208 assert expected_crc in output