Lines Matching full:bin
1 #!/usr/bin/env python
52 …-binary', '-b', help='path to built example binary', default=os.path.join('build', 'parttool.bin'))
62 target.read_partition(factory, 'app.bin')
63 assert_file_same(args.binary, 'app.bin', 'Device app binary does not match built binary')
71 with open('write.bin', 'wb') as f:
77 target.write_partition(storage, 'write.bin')
81 target.read_partition(storage, 'read.bin')
83 …assert_file_same('write.bin', 'read.bin', 'Read contents of storage partition does not match sourc…
91 target.read_partition(storage, 'read.bin')
94 generate_blanked_file(storage_info.size, 'blank.bin')
96 assert_file_same('blank.bin', 'read.bin', 'Contents of storage partition not fully erased')
100 clean_files = ['app.bin', 'read.bin', 'blank.bin', 'write.bin']