Lines Matching full:image
25 patched_run_command.assert_called_with('image list')
27 mcumgr.image_upload('/path/to/image', timeout=100)
28 patched_run_command.assert_called_with('-t 100 image upload /path/to/image')
30 mcumgr.image_upload('/path/to/image', slot=2, timeout=100)
31 patched_run_command.assert_called_with('-t 100 image upload /path/to/image -e -n 2')
34 patched_run_command.assert_called_with('image test ABCD')
37 patched_run_command.assert_called_with('image confirm ABCD')
43 image=0 slot=0
58 image=0 slot=0
63 image=0 slot=1
72 assert image_list[0].image == 0
77 assert image_list[1].image == 0
85 mcumgr.run_command.assert_called_with('image test 1111')
89 mcumgr.run_command.assert_called_with('image confirm 1111')