Lines Matching full:output
10 output = u_boot_console.run_command('pinmux')
11 assert 'Usage:' in output
17 output = u_boot_console.run_command('pinmux status')
18 assert 'Usage:' in output
24 output = u_boot_console.run_command('pinmux status -a')
25 assert ('SCL : I2C SCL' in output)
26 assert ('SDA : I2C SDA' in output)
27 assert ('TX : Uart TX' in output)
28 assert ('RX : Uart RX' in output)
29 assert ('W1 : 1-wire gpio' in output)
35 output = u_boot_console.run_command('pinmux list')
36 assert 'sandbox_pinctrl' in output
43 output = u_boot_console.run_command('pinmux dev ' + pincontroller)
45 assert (expected_output in output)
52 output = u_boot_console.run_command('pinmux dev ' + pincontroller)
54 assert (expected_output in output)
61 output = u_boot_console.run_command('pinmux status')
62 assert ('SCL : I2C SCL' in output)
63 assert ('SDA : I2C SDA' in output)
64 assert ('TX : Uart TX' in output)
65 assert ('RX : Uart RX' in output)
66 assert ('W1 : 1-wire gpio' in output)