Lines Matching refs:output
23 output = u_boot_console.run_command_list([
27 assert('dir1/' in ''.join(output))
29 output = u_boot_console.run_command(
31 assert('./' in output)
32 assert('../' in output)
42 output = u_boot_console.run_command_list([
46 assert('dir2/' in ''.join(output))
48 output = u_boot_console.run_command(
50 assert('./' in output)
51 assert('../' in output)
61 output = u_boot_console.run_command_list([
64 assert('Unable to create a directory' in ''.join(output))
73 output = u_boot_console.run_command_list([
76 assert('Unable to create a directory' in ''.join(output))
85 output = u_boot_console.run_command_list([
88 assert('Unable to create a directory' in ''.join(output))
98 output = u_boot_console.run_command_list([
102 assert('dir6/' in ''.join(output))
105 output = u_boot_console.run_command(
108 output = u_boot_console.run_command('%sls host 0:0 dir6' % fs_type)
109 assert('0123456789abcdef00/' in output)
110 assert('0123456789abcdef13/' in output)
112 output = u_boot_console.run_command(
114 assert('./' in output)
115 assert('../' in output)
117 output = u_boot_console.run_command(
119 assert('0123456789abcdef00/' in output)
120 assert('0123456789abcdef13/' in output)