summaryrefslogtreecommitdiff
path: root/test/copy-path.c
Commit message (Collapse)AuthorAgeFilesLines
* Misc. typosluz.paz2019-01-311-1/+1
| | | | | | | Found via `codespell -i 3 -w -I ../cairo-word-whitelist.txt -L tim,ned,uint` Follow up of 12cb59be7da Reviewed-by: Bryce Harrington <bryce@bryceharrington.org>
* test: fix include order for AIX, bug#89354Michael Haubenwallner2015-03-051-1/+1
|
* test/copy-path: memfault status checks.Chris Wilson2010-05-071-23/+38
|
* [test] Propagate error from pathChris Wilson2008-12-121-0/+5
| | | | | If the path is in error, just append it to the context so that the error is propagated correctly.
* [test] Build test suite into single binary.Chris Wilson2008-10-311-23/+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.
* [test] Preparatory work for running under memfault.Chris Wilson2008-08-131-21/+60
| | | | | | | | | | | | | | | | | | | | 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/.
* [cairo-path] Check for an empty path in cairo_append_path().Chris Wilson2007-10-041-0/+15
| | | | | | | As we now generate empty paths, we must be able to handle empty paths in the user facing API. cairo_append_path() has an explicit check, and raises an error, for a NULL path->data, so we need to check the path->num_data first for empty paths.
* [cairo-path] Don't raise an error when attempting to create an empty path.Chris Wilson2007-10-011-0/+17
| | | | | | | | | | Generate a real empty path structure instead of returning _cairo_path_nil, if we have been asked to create an empty path. (Also add a couple of missing _cairo_error()s and an appropriate test case.) Spotted by Fred Kiefer.
* Augment cairo_test_init with cairo_test_fini to avoid leakCarl Worth2007-03-021-0/+2
| | | | | | Without this, any tests that were using cairo_test_init rather than cairo_test would end up leaking a FILE* for the log file. So this keeps valgrind much more happy with the test suite.
* Rename test from stale path-data name to copy-pathCarl Worth2006-09-261-0/+234