diff options
author | Paul Smith <psmith@gnu.org> | 2012-03-03 22:12:46 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2012-03-03 22:12:46 +0000 |
commit | a77c5c09100ef56940546b543dd1c515529ca4bb (patch) | |
tree | dc4aa65797a96e5d72b02ab479429fa51784c151 /tests/guile.supp | |
parent | 88f1bc8b55b9f5abf35fdf974310c1063fa41068 (diff) | |
download | gunmake-a77c5c09100ef56940546b543dd1c515529ca4bb.tar.gz |
Fix Savannah bug #35410: handle escape chars in filter/filter-out
Also add a valgrind suppression file for Guile-enabled make.
Diffstat (limited to 'tests/guile.supp')
-rw-r--r-- | tests/guile.supp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/guile.supp b/tests/guile.supp new file mode 100644 index 0000000..9e9b01b --- /dev/null +++ b/tests/guile.supp @@ -0,0 +1,31 @@ +# Guile valgrind suppression file +# Created with Guile 1.8.7 + +# --- Garbage collection +{ + guilegc + Memcheck:Cond + ... + fun:scm_gc_for_newcell +} +{ + guilegc + Memcheck:Value4 + ... + fun:scm_gc_for_newcell +} +{ + guilegc + Memcheck:Value8 + ... + fun:scm_gc_for_newcell +} + + +# -- scm_alloc_struct +{ + guileheap + Memcheck:Leak + ... + fun:scm_alloc_struct +} |