summaryrefslogtreecommitdiff
path: root/test/user-font-mask.c
AgeCommit message (Collapse)AuthorFilesLines
2009-11-29[test] Add missing mark_dirty() calls to test cases.M Joonas Pihlaja1-0/+1
A recent optimisation has added a flag to the image surface which is used to track whether the surface is clear or not. This makes it imperative that clients call cairo_surface_mark_dirty() if they use cairo to allocate their pixel buffers and then proceed to initialize them without telling cairo about it.
2009-03-24[test] Check for surface create failure.Chris Wilson1-1/+6
If the image surface creation fails, the data pointer will be NULL leading to a segfault -- so check!
2009-02-10[test] Don't embed preprocessor directives inside macrosJeff Muizelaar1-5/+6
MSVC can't handle this. GCC will warn with -pedantic, but I'm not sure we want to enable that.
2008-10-31[test] Build test suite into single binary.Chris Wilson1-18/+10
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-10-28Rename user-font-image test to user-font-mask.Carl Worth1-0/+254
Otherwise the reference image (user-font-image-ref.png) gets interpreted as an image-specific reference image for the user-font test case resulting in a bogus failure.