summaryrefslogtreecommitdiff
path: root/tests/gdimagefilter
Commit message (Collapse)AuthorAgeFilesLines
* 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!).
* Remove unused argc/argv parameters from main() in testsChristoph M. Becker2016-07-131-1/+1
|
* tests: cmake: switch to list appendingMike Frysinger2016-06-151-1/+1
| | | | | | This makes it a bit cleaner when dealing with optional tests as we use the LIST(APPEND...) command everywhere instead of sometimes SET and sometimes LIST.
* fix various gcc/clang warnings found with -WallMike Frysinger2016-05-131-3/+2
|
* tests: fix leaks in test codeDavid Drysdale2016-05-011-0/+4
| | | | | Ensure all images etc. are freed so that we can enable leak checking across the tests and not get any false positives.
* tests: gd2: add general read test helpers #208Mike Frysinger2016-04-301-1/+1
| | | | | | | | | Since we have random files we want to read & check, turn the two read programs into general tools. Then we have shell scripts to run against the right inputs. Most of the changes here are just shuffling variable names so we can add to check_PROGRAMS independently of TESTS.
* tests: split up makefile entriesMike Frysinger2016-04-301-0/+5
| | | | | This matches what we've done with cmake files, and it makes managing the subdirs much easier.
* tests: unify cmake test code into a single macroMike Frysinger2016-04-301-6/+2
| | | | | | | | | This makes the test code a lot easier to manage rather than copying & pasting the same boiler plate multiple times. Also take the opportunity to add a common prefix to each test name so we don't get collisions between subdirs if a test happens to use the same exact name.
* tests: add missing cmake files gdimagefile/gdimagefilterMike Frysinger2016-04-301-0/+9
|
* gitignore: split up test entriesMike Frysinger2016-04-301-0/+1
| | | | | This makes it easier to keep track of things. The single toplevel list can make it hard to notice when something is stale.
* add sanity check and fix leak on exitPierre Joye2015-01-141-1/+2
|
* Added a test case for gdImageCopyGaussianBlurred().Chris Reuter2013-12-101-0/+197
This change is relatively thorough. It confirms that the blurring process succeeds and that the result is at least somewhat blurry.