Lines Matching full:response
33 response = u_boot_console.run_command('avb init %s' %str(mmc_dev))
34 assert response == ''
35 response = u_boot_console.run_command('avb verify')
36 assert response.find(success_str)
45 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
46 assert response == ''
48 response = u_boot_console.run_command('mmc rescan; mmc dev %s' %
50 assert response.find('is current device')
77 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
78 assert response == ''
80 response = u_boot_console.run_command('avb read_rb 1')
81 assert response == 'Rollback index: 0'
89 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
90 assert response == ''
92 response = u_boot_console.run_command('avb is_unlocked')
93 assert response == 'Unlocked = 1'
101 response = u_boot_console.run_command('mmc rescan; mmc dev %s 0' %
103 assert response.find('is current device')
105 response = u_boot_console.run_command('mmc read 0x%x 0x100 0x1' % temp_addr)
106 assert response.find('read: OK')
108 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
109 assert response == ''
111 response = u_boot_console.run_command('avb read_part xloader 0 100 0x%x' %
113 assert response.find('Read 512 bytes')
116 response = u_boot_console.run_command('cmp 0x%x 0x%x 40' %
118 assert response.find('64 word')