summaryrefslogtreecommitdiffstats
path: root/Misc/valgrind-python.supp
Commit message (Collapse)AuthorAgeFilesLines
* Fix:Neal Norwitz2008-08-241-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | * crashes on memory allocation failure found with failmalloc * memory leaks found with valgrind * compiler warnings in opt mode which would lead to invalid memory reads * problem using wrong name in decimal module reported by pychecker Update the valgrind suppressions file with new leaks that are small/one-time leaks we don't care about (ie, they are too hard to fix). TBR=barry TESTED=./python -E -tt ./Lib/test/regrtest.py -uall (both debug and opt modes) in opt mode: valgrind -q --leak-check=yes --suppressions=Misc/valgrind-python.supp \ ./python -E -tt ./Lib/test/regrtest.py -uall,-bsddb,-compiler \ -x test_logging test_ssl test_multiprocessing valgrind -q --leak-check=yes --suppressions=Misc/valgrind-python.supp \ ./python -E -tt ./Lib/test/regrtest.py test_multiprocessing for i in `seq 1 4000` ; do LD_PRELOAD=~/local/lib/libfailmalloc.so FAILMALLOC_INTERVAL=$i \ ./python -c pass done At least some of these fixes should probably be backported to 2.5.
* Ignore valgrind problems on Ubuntu from ldNeal Norwitz2007-06-111-0/+9
|
* Ignore some more warnings in the dynamic linker on an older gentooNeal Norwitz2006-06-271-0/+9
|
* Updated gentoo to 2005.0Neal Norwitz2005-11-131-94/+100
|
* suppress more errors on my box, most are gentoo specific. ↵Neal Norwitz2005-10-031-0/+118
| | | | Py_ADDRESS_IN_RANGE is x86_64 specific and the readline memory leaks should be generally applicable
* Add some doc about using valgrindNeal Norwitz2004-06-061-0/+216