1
0
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:
Joe Conigliaro
2020-03-11 11:31:24 +11:00
parent 630913d872
commit 083964522b
9 changed files with 29 additions and 20 deletions

View File

@@ -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'
}