Lines Matching refs:response

9 def in_tree(response, name, uclass, drv, depth, last_child):  argument
10 lines = [x.strip() for x in response.splitlines()]
39 response = u_boot_console.run_command('bind /usb@1 usb_ether')
40 assert response == ''
45 response = u_boot_console.run_command('unbind /bind-test/bind-test-child1')
46 assert response == ''
53 response = u_boot_console.run_command('bind /bind-test/bind-test-child1 phy_sandbox')
54 assert response == ''
61 response = u_boot_console.run_command('unbind /bind-test/bind-test-child2')
62 assert response == ''
70 response = u_boot_console.run_command('bind /bind-test/bind-test-child2 simple_bus')
71 assert response == ''
78 response = u_boot_console.run_command('unbind /bind-test')
79 assert response == ''
86 response = u_boot_console.run_command('bind /not-a-valid-node simple_bus')
87 assert response != ''
92 response = u_boot_console.run_command('bind /bind-test not_a_driver')
93 assert response != ''
98 response = u_boot_console.run_command('bind /bind-test simple_bus')
99 assert response == ''
105 response = u_boot_console.run_command('unbind /bind-test')
106 assert response == ''
125 response = u_boot_console.run_command('bind /bind-test simple_bus')
126 assert response == ''
137 response = u_boot_console.run_command(
150 response = u_boot_console.run_command('unbind simple_bus {}'.format(child_of_child2_index))
151 assert response == ''
159 response = u_boot_console.run_command(
173 response = u_boot_console.run_command(
175 assert response == ''
185 response = u_boot_console.run_command(
189 assert response == ''
192 response = u_boot_console.run_command('unbind /bind-test')
193 assert response == ''