mirror of
https://github.com/python/cpython.git
synced 2025-10-01 21:02:15 +00:00
bpo-32889: update valgrind suppressions (GH-5779)
Py_ADDRESS_IN_RANGE was renamed address_in_range in 3.6 (commit3924f93794
). (cherry picked from commitba518804bf
) Co-authored-by: Paul Price <price@astro.princeton.edu>
This commit is contained in:
parent
e5d38deb04
commit
69607b4ecf
2 changed files with 7 additions and 5 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
Update Valgrind suppression list to account for the rename of
|
||||||
|
``Py_ADDRESS_IN_RANG`` to ``address_in_range``.
|
|
@ -8,7 +8,7 @@
|
||||||
# ./python -E ./Lib/test/regrtest.py -u gui,network
|
# ./python -E ./Lib/test/regrtest.py -u gui,network
|
||||||
#
|
#
|
||||||
# You must edit Objects/obmalloc.c and uncomment Py_USING_MEMORY_DEBUGGER
|
# You must edit Objects/obmalloc.c and uncomment Py_USING_MEMORY_DEBUGGER
|
||||||
# to use the preferred suppressions with Py_ADDRESS_IN_RANGE.
|
# to use the preferred suppressions with address_in_range.
|
||||||
#
|
#
|
||||||
# If you do not want to recompile Python, you can uncomment
|
# If you do not want to recompile Python, you can uncomment
|
||||||
# suppressions for PyObject_Free and PyObject_Realloc.
|
# suppressions for PyObject_Free and PyObject_Realloc.
|
||||||
|
@ -19,25 +19,25 @@
|
||||||
{
|
{
|
||||||
ADDRESS_IN_RANGE/Invalid read of size 4
|
ADDRESS_IN_RANGE/Invalid read of size 4
|
||||||
Memcheck:Addr4
|
Memcheck:Addr4
|
||||||
fun:Py_ADDRESS_IN_RANGE
|
fun:address_in_range
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
ADDRESS_IN_RANGE/Invalid read of size 4
|
ADDRESS_IN_RANGE/Invalid read of size 4
|
||||||
Memcheck:Value4
|
Memcheck:Value4
|
||||||
fun:Py_ADDRESS_IN_RANGE
|
fun:address_in_range
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
ADDRESS_IN_RANGE/Invalid read of size 8 (x86_64 aka amd64)
|
ADDRESS_IN_RANGE/Invalid read of size 8 (x86_64 aka amd64)
|
||||||
Memcheck:Value8
|
Memcheck:Value8
|
||||||
fun:Py_ADDRESS_IN_RANGE
|
fun:address_in_range
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
|
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
|
||||||
Memcheck:Cond
|
Memcheck:Cond
|
||||||
fun:Py_ADDRESS_IN_RANGE
|
fun:address_in_range
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue