summaryrefslogtreecommitdiff
path: root/tests/xbm
Commit message (Collapse)AuthorAgeFilesLines
* tests: Correct some test depend errorswilson chen2020-01-022-3/+3
|
* Add a test for issue libgd#501 CVE-2019-11038Lance Wang2019-09-025-1/+53
| | | | | When using gdImageCreateFromXbm() it is possible to supply data that will cause the function to use the value of uninitialized variable.
* clean up trailing whitespace/newlinesMike Frysinger2018-06-211-1/+1
| | | | | This is preparation for adding some linting checks for new commits from people. Shouldn't be any functional changes here (tests still pass!).
* convert all files to native line encodingsMike Frysinger2018-06-212-67/+63
| | | | | | A bunch of these files were committed with Windows line encodings. Strip all those ^M gremlins out as people working on Windows can use git's autocrlf setting to convert back and forth as needed.
* tests: add more checks for libpng (and other deps)Mike Frysinger2017-02-232-0/+4
| | | | This fixes #382.
* Add a test for reading X10 bitmap filesChristoph M. Becker2017-01-216-2/+43
| | | | | We also improve the related documentation, which didn't mention yet which X bitmap formats are supported.
* Fix #109: XBM reading fails with printed errorChristoph M. Becker2017-01-206-1/+46
| | | | | When calculating the number of required bytes of an XBM image, we have to take the line padding into account.
* win32 build fixes, skip or fix buildPierre Joye2016-07-171-0/+8
|
* Fix #170: XBM images require width to be multiple of 8Christoph M. Becker2016-06-164-0/+53
We remove this limitation by fixing the underlying implementation bug, and add a respective regression test to the suite.