summaryrefslogtreecommitdiff
path: root/test/.valgrind-suppressions
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2007-04-16 15:42:07 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2007-04-16 15:44:28 +0100
commit9d435d5fbfae0f64053f6596f73410bc352cd2de (patch)
tree539541193cdf5505f55f09afb13b0d085d91dcd7 /test/.valgrind-suppressions
parent3a3fb0031decec26260cd94e60f1b0bf06541a6d (diff)
downloadcairo-9d435d5fbfae0f64053f6596f73410bc352cd2de.tar.gz
Add suppression for leak from XauFileName.
The string is statically allocated by XauFileName() and so ignore the fact that is not freed upon termination.
Diffstat (limited to 'test/.valgrind-suppressions')
-rw-r--r--test/.valgrind-suppressions7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/.valgrind-suppressions b/test/.valgrind-suppressions
index cd3a086c8..1dca7c5a1 100644
--- a/test/.valgrind-suppressions
+++ b/test/.valgrind-suppressions
@@ -500,4 +500,9 @@
fun:NewDatabase
fun:XrmGetFileDatabase
}
-
+{
+ Xau chooses not to free its static data...
+ Memcheck:Leak
+ fun:malloc
+ fun:XauFileName
+}