|
From: <sv...@va...> - 2012-08-04 00:26:33
|
philippe 2012-08-04 01:26:26 +0100 (Sat, 04 Aug 2012)
New Revision: 12825
Log:
Add non matching suppressions for suppfree test (more testing for suppr matching)
Added files:
trunk/memcheck/tests/suppfree.supp
Modified files:
trunk/memcheck/tests/Makefile.am
trunk/memcheck/tests/suppfree.vgtest
Modified: trunk/memcheck/tests/Makefile.am (+1 -1)
===================================================================
--- trunk/memcheck/tests/Makefile.am 2012-08-04 00:11:39 -23:00 (rev 12824)
+++ trunk/memcheck/tests/Makefile.am 2012-08-04 01:26:26 +01:00 (rev 12825)
@@ -196,7 +196,7 @@
supp1.stderr.exp supp1.vgtest \
supp2.stderr.exp supp2.vgtest \
supp.supp \
- suppfree.stderr.exp suppfree.vgtest \
+ suppfree.stderr.exp suppfree.supp suppfree.vgtest \
test-plo-no.vgtest test-plo-no.stdout.exp \
test-plo-no.stderr.exp-le64 test-plo-no.stderr.exp-le32 \
test-plo-yes.vgtest test-plo-yes.stdout.exp \
Added: trunk/memcheck/tests/suppfree.supp (+57 -0)
===================================================================
--- trunk/memcheck/tests/suppfree.supp 2012-08-04 00:11:39 -23:00 (rev 12824)
+++ trunk/memcheck/tests/suppfree.supp 2012-08-04 01:26:26 +01:00 (rev 12825)
@@ -0,0 +1,57 @@
+{
+ nonmatching1
+ Memcheck:Free
+ fun:free
+ fun:dd
+ fun:ccc
+ fun:bbb
+ fun:aaa
+ fun:main
+}
+
+{
+ nonmatching2
+ Memcheck:Free
+ fun:free
+ fun:ddd
+ fun:cc
+ fun:bbb
+ fun:aaa
+ fun:main
+}
+
+{
+ nonmatching3
+ Memcheck:Free
+ fun:free
+ fun:ddd
+ fun:ccc
+ fun:xxxxxxxx
+ fun:bbb
+ fun:aaa
+ fun:main
+}
+
+{
+ nonmatching4
+ Memcheck:Free
+ fun:free
+ fun:ddd
+ fun:ccc
+ ...
+ fun:bbb
+ fun:aaa
+ fun:main
+ fun:nonmatching
+}
+
+{
+ nonmatching5
+ Memcheck:Free
+ fun:free
+ fun:ddd
+ obj:nonmatching
+ fun:bbb
+ fun:aaa
+ fun:main
+}
Modified: trunk/memcheck/tests/suppfree.vgtest (+1 -1)
===================================================================
--- trunk/memcheck/tests/suppfree.vgtest 2012-08-04 00:11:39 -23:00 (rev 12824)
+++ trunk/memcheck/tests/suppfree.vgtest 2012-08-04 01:26:26 +01:00 (rev 12825)
@@ -1,2 +1,2 @@
prog: suppfree
-vgopts: -q
+vgopts: --suppressions=suppfree.supp -q
|