summaryrefslogtreecommitdiff
path: root/test/pdf-surface-source.c
AgeCommit message (Collapse)AuthorFilesLines
2008-10-31[test] Use '.' as the field separator in the namesChris Wilson1-1/+1
We frequently use '-' within the test name or format name and so we encounter confusion as '-' is also used as the field separator. At times this has caused a new test to break an old test because the new test would match one of the old test's target specific reference images. So switch everything over to use '.' between fields (test name, target, format, subtest, etc.).
2008-10-31[test] Build test suite into single binary.Chris Wilson1-2/+8
Avoid calling libtool to link every single test case, by building just one binary from all the sources. This binary is then given the task of choosing tests to run (based on user selection and individual test requirement), forking each test into its own process and accumulating the results.
2008-02-15[test] Add tests using each backend as a source.Chris Wilson1-0/+41
Inspired by bug 7362 (painting a glitz surface onto an xlib surface crashes cairo) and the lack of coverage for _cairo_paginated_surface_acquire_source_image(), these tests attempt to use each backend as a source surface for all the other backends. For example, this checks that one can construct a PS file ready for printing and then copy that surface to an image/xlib for previewing.