Lines Matching refs:response
10 response = u_boot_console.run_command('button list; echo rc:$?')
11 assert('button1' in response)
12 assert('button2' in response)
13 assert('rc:0' in response)
26 response = u_boot_console.run_command('button button1; echo rc:$?')
27 assert('on' in response)
28 assert('rc:0' in response)
31 response = u_boot_console.run_command('button button1; echo rc:$?')
32 assert('off' in response)
33 assert('rc:1' in response)
35 response = u_boot_console.run_command('button nonexistent-button; echo rc:$?')
36 assert('not found' in response)
37 assert('rc:1' in response)