summaryrefslogtreecommitdiff
path: root/test/degenerate-path.c
Commit message (Collapse)AuthorAgeFilesLines
* On MacOSX, the sed utility errors out when parsing non-UTF8Bryce Harrington2015-03-101-1/+1
| | | | | | | files. Because of this, the generated cairo-test-constructor only contained a few tests and the test suite was thus incomplete. Original patch by Andrea Canciani <ranma42@gmail.com>
* Remove XFAIL_TESTS from Makefile.amUli Schlachter2013-10-031-0/+4
| | | | | | | | | | | | | | | | | | | | | The variable XFAIL_TESTS is not used anymore since commit e90073f7ddc. The description for the known failures are moved into the respective tests as comments. The following descriptions were dropped: - surface-pattern-big: Didn't really explain the failure - big-line: Test isn't failing any more - self-intersecting: Only XFAIL on quartz, but description doesn't match this The following tests don't have a xfail reference image and seem to fail just because of not having a reference image at all (I kept their description for now): big-trap, long-lines, self-copy-overlap Signed-off-by: Uli Schlachter <psychon@znc.in>
* test: Cleanup macrosAndrea Canciani2011-03-171-3/+1
| | | | | | | | The ARRAY_LENGTH macro is used by many tests, although sometimes it is named ARRAY_SIZE. Define it just once in cairo-test.h and reuse it. In a similar way, MAX() and MIN() are currently defined in some specific tests, while they could be reused.
* [test] Track XFAIL using expected results stored as xfail.pngChris Wilson2009-07-131-1/+1
| | | | | | | | | | | | | | | | Instead of tagging the sources, which is insensitive to changes, track the known failure modes by recording the current fail as an xfail.png reference. (We also introduce a new.png to track a fresh error, so that they are not lost in the noise of the old XFAILs and hopefully do not cause everyone to fret). As we have removed the XFAIL tagging we find, surprise surprise, that some tests are now working -- so review all the reference images (as also some .ref.png now should be .xfail.png). Note: I've only checked image,pdf,ps,svg. The test surfaces report some failures that probably need to addressed in source. I've not correct the changes for win32 and quartz. Nor fixed up the experimental backends.
* [test] Build test suite into single binary.Chris Wilson2008-10-311-15/+6
| | | | | | | | | 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.
* Mark degenerate-path and miter-precision as XFAIL.Carl Worth2008-09-251-1/+2
| | | | | | | | | | These two tests currently fail only for the PS backend, but they've done so since before the last major release. The final image result we're getting is definitely wrong in both cases, but we have not yet been able to verify if this is due to bugs in cairo (generating PostScript) or in ghostscript (interpreting and rasterzing the PostScript).
* [test] Preparatory work for running under memfault.Chris Wilson2008-08-131-1/+1
| | | | | | | | | | | | | | | | | | | | In order to run under memfault, the framework is first extended to handle running concurrent tests - i.e. multi-threading. (Not that this is a requirement for memfault, instead it shares a common goal of storing per-test data). To that end all the global data is moved into a per-test context and the targets are adjusted to avoid overlap on shared, global resources (such as output files and frame buffers). In order to preserve the simplicity of the standard draw routines, the context is not passed explicitly as a parameter to the routines, but is instead attached to the cairo_t via the user_data. For the masochist, to enable the tests to be run across multiple threads simply set the environment variable CAIRO_TEST_NUM_THREADS to the desired number. In the long run, we can hope the need for memfault (runtime testing of error paths) will be mitigated by static analysis. A promising candidate for this task would appear to be http://hal.cs.berkeley.edu/cil/.
* Add two new test cases to degenerate-path testJeff Muizelaar2007-02-191-1/+22
| | | | | These new cases deal with degenerate paths at the end of dashed paths. They currently fail.
* Merge branch 'jrmuizel-stroking-fixes' into cairoCarl Worth2006-08-181-10/+44
|\ | | | | | | | | | | | | | | Conflicts: test/dash-caps-joins-ps-argb32-ref.png test/degenerate-path-ps-argb32-ref.png test/degenerate-path.c
| * Modify degenerate-path test case to test dashed degenerate paths.Jeff Muizelaar2006-07-151-10/+44
| |
* | Eliminate most compiler warnings from the test suiteCarl Worth2006-08-081-1/+1
|/
* Add prototype for draw in each test file and remove it from the header.Behdad Esfahbod2006-07-131-0/+2
|
* More test suite infrastructure improvements:Behdad Esfahbod2006-07-111-2/+3
| | | | | | | | | | | | | | | | | - Remove cairo_test_expect_failure. cairo-test.c now checks env var CAIRO_XFAIL_TESTS to see if the running test is expected to fail. The reason for expected failure is appended to the test description. - Test description is written out. - Failed/crashed tests also write a line out to stderr (in red), so one can now redirect stdout to /dev/null to only see failures. - cairo_test() has been changed to not take the draw function anymore, instead, draw function is now part of the test struct. - "make check" doesn't allow limiting backends to test using env var anymore. To limit backends to test, one should use the TARGETS variable on the make command line. - "make check-valgrind" now writes its log to valgrind-log instead of valgrind.log, to not interfere with test log file processing.
* Add new test case degenerate-path to show current 'bug'Jeff Muizelaar2006-06-251-0/+68