Lines Matching refs:response
9 def in_tree(response, name, uclass, drv, depth, last_child): argument
11 lines = [x.strip() for x in response.splitlines()]
45 response = ubman.run_command('bind /usb@1 usb_ether')
46 assert response == ''
51 response = ubman.run_command('unbind /bind-test/bind-test-child1')
52 assert response == ''
59 response = ubman.run_command('bind /bind-test/bind-test-child1 phy_sandbox')
60 assert response == ''
67 response = ubman.run_command('unbind /bind-test/bind-test-child2')
68 assert response == ''
76 response = ubman.run_command('bind /bind-test/bind-test-child2 simple_bus')
77 assert response == ''
84 response = ubman.run_command('unbind /bind-test')
85 assert response == ''
92 response = ubman.run_command('bind /not-a-valid-node simple_bus')
93 assert response != ''
98 response = ubman.run_command('bind /bind-test not_a_driver')
99 assert response != ''
104 response = ubman.run_command('bind /bind-test simple_bus')
105 assert response == ''
111 response = ubman.run_command('unbind /bind-test')
112 assert response == ''
137 response = ubman.run_command('bind /bind-test simple_bus')
138 assert response == ''
149 response = ubman.run_command(
162 response = ubman.run_command('unbind simple_bus {}'.format(child_of_child2_index))
163 assert response == ''
171 response = ubman.run_command(
185 response = ubman.run_command(
187 assert response == ''
197 response = ubman.run_command(
201 assert response == ''
204 response = ubman.run_command('unbind /bind-test')
205 assert response == ''