Lines Matching full:crc
34 # Our Firmware object prints out the CRC of the received firmware
40 crc = int(re.search('CRC ([0-9]+)', line).group(1))
41 # Verify that CRC matches
42 assert crc == zlib.crc32(fw)
64 # Our Firmware object prints out the CRC of the received firmware
70 crc = int(re.search('CRC ([0-9]+)', line).group(1))
71 # Verify that CRC matches
72 assert crc == zlib.crc32(fw)
95 crc = int(lines[0])
96 assert crc == zlib.crc32(data)
103 assert crc == zlib.crc32(data)