Lines Matching refs:output

26             output = u_boot_console.run_command_list([
31 assert('20480 bytes written' in ''.join(output))
34 output = u_boot_console.run_command_list([
39 assert(md5val[0] in ''.join(output))
49 output = u_boot_console.run_command_list([
54 assert('20480 bytes written' in ''.join(output))
57 output = u_boot_console.run_command_list([
62 assert(md5val[0] in ''.join(output))
72 output = u_boot_console.run_command_list([
77 assert('Unable to write file /dir1/none/' in ''.join(output))
87 output = u_boot_console.run_command_list([
92 output = u_boot_console.run_command(
95 assert('20480 bytes written' in output)
98 output = u_boot_console.run_command_list([
102 assert('filesize=6400' in ''.join(output))
105 output = u_boot_console.run_command_list([
110 assert(md5val[1] in ''.join(output))
120 output = u_boot_console.run_command_list([
125 output = u_boot_console.run_command(
128 assert('5120 bytes written' in output)
131 output = u_boot_console.run_command_list([
135 assert('filesize=2800' in ''.join(output))
138 output = u_boot_console.run_command_list([
143 assert(md5val[2] in ''.join(output))
153 output = u_boot_console.run_command_list([
158 output = u_boot_console.run_command(
161 assert('0 bytes written' in output)
164 output = u_boot_console.run_command_list([
168 assert('filesize=0' in ''.join(output))
178 output = u_boot_console.run_command_list([
183 output = u_boot_console.run_command(
186 assert('20480 bytes written' in output)
189 output = u_boot_console.run_command_list([
193 assert('filesize=a000' in ''.join(output))
196 output = u_boot_console.run_command_list([
201 assert(md5val[3] in ''.join(output))
211 output = u_boot_console.run_command_list([
216 output = u_boot_console.run_command(
219 assert('Unable to write file /dir1' in output)
229 output = u_boot_console.run_command_list([
234 assert('Unable to write file /dir1' in ''.join(output))
247 output = u_boot_console.run_command(
251 output = u_boot_console.run_command(
254 output = u_boot_console.run_command('%sls host 0:0 /' % fs_type)
255 assert('FILE0123456789_00' in output)
256 assert('FILE0123456789_41' in output)
260 output = u_boot_console.run_command(
263 output = u_boot_console.run_command('%sls host 0:0 /' % fs_type)
264 assert(not 'FILE0123456789_00' in output)
265 assert(not 'FILE0123456789_41' in output)
270 output = u_boot_console.run_command(
273 output = u_boot_console.run_command('%sls host 0:0 /' % fs_type)
274 assert('FILE0123456789_40' in output)
275 assert('FILE0123456789_79' in output)
289 output = u_boot_console.run_command(
293 output = u_boot_console.run_command(
296 output = u_boot_console.run_command('%sls host 0:0 /dir1' % fs_type)
297 assert('FILE0123456789_00' in output)
298 assert('FILE0123456789_41' in output)
302 output = u_boot_console.run_command(
305 output = u_boot_console.run_command('%sls host 0:0 /dir1' % fs_type)
306 assert(not 'FILE0123456789_00' in output)
307 assert(not 'FILE0123456789_41' in output)
312 output = u_boot_console.run_command(
315 output = u_boot_console.run_command('%sls host 0:0 /dir1' % fs_type)
316 assert('FILE0123456789_40' in output)
317 assert('FILE0123456789_79' in output)