Lines Matching refs:response
132 response = u_boot_console.run_command('abootimg get ver')
133 assert response == "2"
135 response = u_boot_console.run_command('env print v')
136 assert response == 'v=2'
139 response = u_boot_console.run_command('abootimg get recovery_dtbo a')
140 assert response == 'Error: recovery_dtbo_size is 0'
143 response = u_boot_console.run_command('abootimg dump dtb').replace('\r', '')
144 assert response == dtb_dump_resp
148 response = u_boot_console.run_command('env print a')
149 assert response == 'a=11f00000'
153 response = u_boot_console.run_command('env print dtb1_start')
155 assert response == correct_str
158 response = u_boot_console.run_command('env print v')
159 assert response == 'v=x2'