assert that generated images match P6 master

This commit is contained in:
Rasmus Moorats 2022-01-11 12:51:54 +02:00
parent be26fe5193
commit a7388a291d
No known key found for this signature in database
GPG key ID: FE14255A6AE7241C

View file

@ -11,3 +11,8 @@ block:
"tests/fileformats/ppm/feep.p3.hidepth.master.ppm"
))
writeFile("tests/fileformats/ppm/feep.p3.hidepth.ppm", encodePpm(image))
# produced output should be identical to P6 master
let p6Master = readFile("tests/fileformats/ppm/feep.p6.master.ppm")
for image in @["p3", "p6", "p3.hidepth"]:
doAssert readFile("tests/fileformats/ppm/feep." & $image & ".ppm") == p6Master