Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Unified Diff: tools/valgrind/memcheck_analyze.py

Issue 1242008: Implement more sanity tests for Memcheck/Valgrind (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/valgrind/memcheck/suppressions.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/memcheck_analyze.py
===================================================================
--- tools/valgrind/memcheck_analyze.py (revision 42598)
+++ tools/valgrind/memcheck_analyze.py (working copy)
@@ -311,7 +311,22 @@
''' Given a set of Valgrind XML files, parse all the errors out of them,
unique them and output the results.'''
- SANITY_TEST_SUPPRESSION = "Memcheck sanity test"
+ SANITY_TEST_SUPPRESSIONS = [
+ "Memcheck sanity test (array deleted without []).",
+ "Memcheck sanity test (malloc/read left).",
+ "Memcheck sanity test (malloc/read right).",
+ "Memcheck sanity test (malloc/write left).",
+ "Memcheck sanity test (malloc/write right).",
+ "Memcheck sanity test (memory leak).",
+ "Memcheck sanity test (new/read left).",
+ "Memcheck sanity test (new/read right).",
+ "Memcheck sanity test (new/write left).",
+ "Memcheck sanity test (new/write right).",
+ "Memcheck sanity test (single element deleted with []).",
+ "Memcheck sanity test (write after delete).",
+ "Memcheck sanity test (write after free).",
+ ]
+
def __init__(self, source_dir, files, show_all_leaks=False, use_gdb=False):
'''Reads in a set of files.
@@ -439,10 +454,13 @@
print "-----------------------------------------------------"
print "Suppressions used:"
print " count name"
+ remaining_sanity_supp = set(MemcheckAnalyze.SANITY_TEST_SUPPRESSIONS)
for item in sorted(self._suppcounts.items(), key=lambda (k,v): (v,k)):
print "%7s %s" % (item[1], item[0])
- if item[0].startswith(MemcheckAnalyze.SANITY_TEST_SUPPRESSION):
- is_sane = True
+ if item[0] in remaining_sanity_supp:
+ remaining_sanity_supp.remove(item[0])
+ if len(remaining_sanity_supp) == 0:
+ is_sane = True
print "-----------------------------------------------------"
sys.stdout.flush()
@@ -462,6 +480,9 @@
# Report tool's insanity even if there were errors.
if check_sanity and not is_sane:
logging.error("FAIL! Sanity check failed!")
+ logging.info("The following test errors were not handled: ")
+ for supp in remaining_sanity_supp:
+ logging.info(" " + supp)
retcode = -3
if retcode != 0:
« no previous file with comments | « tools/valgrind/memcheck/suppressions.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698