summaryrefslogtreecommitdiff
path: root/test/multi-page.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/multi-page.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/multi-page.c')
-rw-r--r--test/multi-page.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/multi-page.c b/test/multi-page.c
index 86cf188bb..f0265e25d 100644
--- a/test/multi-page.c
+++ b/test/multi-page.c
@@ -174,5 +174,7 @@ main (void)
printf ("multi-page: Please check %s to ensure it looks happy.\n", filename);
#endif
+ cairo_test_fini ();
+
return CAIRO_TEST_SUCCESS;
}