summaryrefslogtreecommitdiff
path: root/test/pattern-get-type.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2007-03-02 11:31:13 -0800
committerCarl Worth <cworth@cworth.org>2007-03-02 11:31:13 -0800
commitb52dda62fea0745cc28d6149dc4688ade524b4df (patch)
treee39fea2b93b977ad0b232b8cda4f732c3d972764 /test/pattern-get-type.c
parent7d6e21c7e298e1795f36fdf021d61ef4ed0ca0fa (diff)
downloadcairo-b52dda62fea0745cc28d6149dc4688ade524b4df.tar.gz
Augment cairo_test_init with cairo_test_fini to avoid leak
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.
Diffstat (limited to 'test/pattern-get-type.c')
-rw-r--r--test/pattern-get-type.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/pattern-get-type.c b/test/pattern-get-type.c
index a6aba03aa..d64dd881a 100644
--- a/test/pattern-get-type.c
+++ b/test/pattern-get-type.c
@@ -70,5 +70,7 @@ main (void)
cairo_pattern_destroy (linear);
cairo_pattern_destroy (radial);
+ cairo_test_fini ();
+
return CAIRO_TEST_SUCCESS;
}