You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
656 B
17 lines
656 B
4 years ago
|
#!/bin/sh
|
||
|
|
||
|
# normal execution
|
||
|
|
||
|
./pngtest --strict ${srcdir}/pngtest.png
|
||
|
|
||
|
# various crashers
|
||
|
# using --relaxed because some come from fuzzers that don't maintain CRC's
|
||
|
|
||
|
./pngtest --relaxed ${srcdir}/contrib/testpngs/crashers/badcrc.png
|
||
|
./pngtest --relaxed ${srcdir}/contrib/testpngs/crashers/badadler.png
|
||
|
./pngtest --xfail ${srcdir}/contrib/testpngs/crashers/bad_iCCP.png
|
||
|
./pngtest --xfail ${srcdir}/contrib/testpngs/crashers/empty_ancillary_chunks.png
|
||
|
./pngtest --xfail ${srcdir}/contrib/testpngs/crashers/huge_*_chunk.png \
|
||
|
${srcdir}/contrib/testpngs/crashers/huge_*safe_to_copy.png
|
||
|
./pngtest --xfail ${srcdir}/contrib/testpngs/crashers/huge_IDAT.png
|