[Python-checkins] cpython: Issue #12612: Add some Valgrind suppressions for 64-bit machines. Patch by Paul

charles-francois.natali python-checkins at python.org
Sat Dec 3 14:44:39 CET 2011


http://hg.python.org/cpython/rev/3eb73f45a614
changeset:   73818:3eb73f45a614
user:        Charles-François Natali <neologix at free.fr>
date:        Sat Dec 03 14:43:57 2011 +0100
summary:
  Issue #12612: Add some Valgrind suppressions for 64-bit machines. Patch by Paul
Price.

files:
  Misc/ACKS                 |   1 +
  Misc/valgrind-python.supp |  24 ++++++++++++++++++++++++
  2 files changed, 25 insertions(+), 0 deletions(-)


diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -777,6 +777,7 @@
 Amrit Prem
 Paul Prescod
 Donovan Preston
+Paul Price
 Jyrki Pulliainen
 Steve Purcell
 Eduardo Pérez
diff --git a/Misc/valgrind-python.supp b/Misc/valgrind-python.supp
--- a/Misc/valgrind-python.supp
+++ b/Misc/valgrind-python.supp
@@ -137,6 +137,18 @@
 ###}
 ###
 ###{
+###   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
+###   Memcheck:Addr8
+###   fun:PyObject_Free
+###}
+###
+###{
+###   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
+###   Memcheck:Value8
+###   fun:PyObject_Free
+###}
+###
+###{
 ###   ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
 ###   Memcheck:Cond
 ###   fun:PyObject_Free
@@ -155,6 +167,18 @@
 ###}
 ###
 ###{
+###   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
+###   Memcheck:Addr8
+###   fun:PyObject_Realloc
+###}
+###
+###{
+###   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
+###   Memcheck:Value8
+###   fun:PyObject_Realloc
+###}
+###
+###{
 ###   ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
 ###   Memcheck:Cond
 ###   fun:PyObject_Realloc

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list