Lines Matching full:output
22 output = u_boot_console.run_command_list([
26 assert('dir1/' in ''.join(output))
28 output = u_boot_console.run_command(
30 assert('./' in output)
31 assert('../' in output)
39 output = u_boot_console.run_command_list([
43 assert('dir2/' in ''.join(output))
45 output = u_boot_console.run_command(
47 assert('./' in output)
48 assert('../' in output)
57 output = u_boot_console.run_command_list([
60 assert('Unable to create a directory' in ''.join(output))
68 output = u_boot_console.run_command_list([
71 assert('Unable to create a directory' in ''.join(output))
79 output = u_boot_console.run_command_list([
82 assert('Unable to create a directory' in ''.join(output))
91 output = u_boot_console.run_command_list([
95 assert('dir6/' in ''.join(output))
98 output = u_boot_console.run_command(
101 output = u_boot_console.run_command('%sls host 0:0 dir6' % fs_type)
102 assert('0123456789abcdef00/' in output)
103 assert('0123456789abcdef13/' in output)
105 output = u_boot_console.run_command(
107 assert('./' in output)
108 assert('../' in output)
110 output = u_boot_console.run_command(
112 assert('0123456789abcdef00/' in output)
113 assert('0123456789abcdef13/' in output)