mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cgen/fmt: fix assign_stmt fix & cgen test & hash tests & fmt
This commit is contained in:
@@ -4,12 +4,12 @@ fn test_hash_crc32() {
|
||||
b1 := 'testing crc32'.bytes()
|
||||
sum1 := crc32.sum(b1)
|
||||
assert sum1 == u32(1212124400)
|
||||
assert sum1.hex() == '0x483f8cf0'
|
||||
assert sum1.hex() == '483f8cf0'
|
||||
|
||||
|
||||
c := crc32.new(crc32.ieee)
|
||||
b2 := 'testing crc32 again'.bytes()
|
||||
sum2 := c.checksum(b2)
|
||||
assert sum2 == u32(1420327025)
|
||||
assert sum2.hex() == '0x54a87871'
|
||||
assert sum2.hex() == '54a87871'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user