summaryrefslogtreecommitdiff
path: root/test/arc-looping-dash.c
Commit message (Collapse)AuthorAgeFilesLines
* arc-looping-dash: Add a missing cairo_restore ()Uli Schlachter2011-02-121-0/+2
| | | | | | | | | | This test called cairo_save () without restoring again. Normally, this doesn't cause a problem. However, when cairo-test-suite is called with "-a", it also executes the tests on a similar surface. This then caused cairo_pop_group_to_source to be called on a cairo_save state which causes a CAIRO_STATUS_INVALID_RESTORE since commit 5d95ae924ed1520. Signed-off-by: Uli Schlachter <psychon@znc.in>
* test: Add arc-looping-dashAndrea Canciani2010-12-091-0/+77
The handling of angles above 2pi in cairo_arc is not very solid and is basically untested. This test should ensure that changes in the behavior will be noticed by the testsuite.