summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-06-29 06:24:44 +0200
committerCarl Worth <cworth@cworth.org>2006-06-29 06:24:44 +0200
commita64b946ee0512d85d3c790c67aad8a882c5c3533 (patch)
tree05b495e452507765b6fbe36283b98c4686083ed1
parent734e10709f5c62c0b64e51a03df8e109e7eebe0d (diff)
Mark test/leaky-dash as an expected failure.
-rw-r--r--test/Makefile.am1
-rw-r--r--test/leaky-dash.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 4da7ed44..bd2e9a6b 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -292,6 +292,7 @@ XFAIL_TESTS = \
a8-mask \
extend-reflect \
filter-nearest-offset \
+leaky-dash \
pixman-rotate \
self-intersecting \
text-rotate
diff --git a/test/leaky-dash.c b/test/leaky-dash.c
index 95c5ca75..44f04f0a 100644
--- a/test/leaky-dash.c
+++ b/test/leaky-dash.c
@@ -64,5 +64,6 @@ draw (cairo_t *cr, int width, int height)
int
main (void)
{
- return cairo_test (&test, draw);
+ return cairo_test_expect_failure (&test, draw,
+ "known bug (#4863) which has existed since the 1.0 release");
}