cairo/boilerplate
Carl Worth eed6771764 Disable the svg12 target in boilerplate.
This target was added to the boilerplate during 1.8.1. It currently
shows many failures in the test suite. These failures likely fall
into three different classes:

	* Tests needing new svg12-specific reference images

	* Tests exercising bugs in librsvg

	* Tests exercising existing cairo bugs

We haven't gone through the effort to separate these, but even for
the tests that are exercising actual cairo bugs, these are likely
bugs that existed in the cairo 1.8.0 release and not regressions.

Because of that, in this commit I'm conditionally disabling the
testing of the svg12 target. As soon as we increment the cairo
version to 1.9.0 or higher, this target will get re-enabled
automatically and we can begin the work to separate the tests as
described above and also fix the bugs.
2008-10-28 17:12:15 -07:00
..
.gitignore [.gitignore] Remove Makefile.*.config 2008-09-24 20:00:30 -04:00
cairo-boilerplate-beos-private.h [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-beos.cpp [boilerplate] Cleanup includes in cairo-boilerplate-beos.cpp 2007-04-20 00:52:03 -04:00
cairo-boilerplate-directfb-private.h [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-directfb.c [boilerplate/directfb] Create ARGB surfaces on demand. 2008-10-20 23:20:22 +01:00
cairo-boilerplate-getopt.c [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-getopt.h [cairo-boilerplate] Silence compiler warning. 2008-06-13 21:34:43 +01:00
cairo-boilerplate-glitz-private.h [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-glitz.c [boilerplate] Fixup compilation for gliitz. 2008-10-15 12:13:40 +01:00
cairo-boilerplate-pdf-private.h Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-pdf.c Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-ps-private.h Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-ps.c Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-quartz-private.h [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-quartz.c [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-scaled-font.h [scaled-font] Get rid of _cairo_scaled_font_test_set_max_glyphs_cached_per_font 2007-04-21 03:43:04 -04:00
cairo-boilerplate-svg-private.h Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-svg.c Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-system.c [boilerplate] Rename xmalloc.[ch] to boilerplate namespace 2008-09-04 15:53:33 -04:00
cairo-boilerplate-system.h [boilerplate] Rename xmalloc.[ch] to boilerplate namespace 2008-09-04 15:53:33 -04:00
cairo-boilerplate-test-surfaces-private.h Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-test-surfaces.c Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-win32-printing.c Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-win32-private.h Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
cairo-boilerplate-win32.c [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-xcb-private.h [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-xcb.c [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-xlib-private.h [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-xlib.c [test] Preparatory work for running under memfault. 2008-08-13 21:54:59 +01:00
cairo-boilerplate-xlib.h [boilerplate] Add missing headers. Oops! 2007-04-21 07:23:30 -04:00
cairo-boilerplate.c Disable the svg12 target in boilerplate. 2008-10-28 17:12:15 -07:00
cairo-boilerplate.h Automate error checking for fallback-resolution. 2008-09-28 14:57:12 +01:00
check-link.c [boilerplate/check-link.c] Oops. Add it. 2008-09-02 22:03:05 -04:00
Makefile.am Generate build/Makefile.win32.features 2008-09-22 22:24:38 -04:00
Makefile.sources [boilerplate] Fix "make dist" 2008-10-06 11:45:08 -04:00
Makefile.win32 Fix residues of the Makefile.*.config Makefile.*.features renaming 2008-09-29 11:49:50 -04:00
README Add boilerplate/README explaining its purpose 2006-08-30 22:33:53 -07:00

This directory provides code that is common to both of cairo's tests
suites:

 * The test suite for correctness in test/
 * The test suite for performance in perf/

We call it boilerplate as it consists primarily of the boilerplate
code necessary for initializing a backend in order to create a surface
for that backend.

The code here just might be useful for someone looking to get started
writing cairo code to use a particular backend, (but there are no
promises that the boilerplate code found here for any particular
backend is exemplary).