summaryrefslogtreecommitdiff
path: root/test/svg-surface.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/svg-surface.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/svg-surface.c')
-rw-r--r--test/svg-surface.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/svg-surface.c b/test/svg-surface.c
index 355394c6d..99b7b4ea0 100644
--- a/test/svg-surface.c
+++ b/test/svg-surface.c
@@ -113,5 +113,7 @@ main (void)
printf ("svg-surface: Please check svg-surface.svg to make sure it looks happy.\n");
+ cairo_test_fini ();
+
return 0;
}