Lines Matching refs:u_boot_console
10 def test_shell_execute(u_boot_console): argument
13 response = u_boot_console.run_command('echo hello')
16 def test_shell_semicolon_two(u_boot_console): argument
20 response = u_boot_console.run_command(cmd)
24 def test_shell_semicolon_three(u_boot_console): argument
30 response = u_boot_console.run_command(cmd)
32 u_boot_console.run_command('setenv list')
34 def test_shell_run(u_boot_console): argument
37 u_boot_console.run_command('setenv foo "setenv monty 1; setenv python 2"')
38 u_boot_console.run_command('run foo')
39 response = u_boot_console.run_command('echo $monty')
41 response = u_boot_console.run_command('echo $python')
43 u_boot_console.run_command('setenv foo')
44 u_boot_console.run_command('setenv monty')
45 u_boot_console.run_command('setenv python')