Index: tools/heapcheck/PRESUBMIT.py |
=================================================================== |
--- tools/heapcheck/PRESUBMIT.py (revision 57122) |
+++ tools/heapcheck/PRESUBMIT.py (working copy) |
@@ -21,11 +21,11 @@ |
if skip_next_line: |
skip_next_line = False |
continue |
- if line == '{' or line == "Memcheck:Param": |
+ if line == '{': |
skip_next_line = True |
continue |
if (line.startswith('fun:') or line.startswith('obj:') or |
- line.startswith('Memcheck:') or line == '}' or |
+ line == 'Heapcheck:Leak' or line == '}' or |
line == '...'): |
continue |
if func_re.match(line): |
@@ -41,6 +41,3 @@ |
def CheckChangeOnCommit(input_api, output_api): |
return CheckChange(input_api, output_api) |
- |
-def GetPreferredTrySlaves(): |
- return ['linux_valgrind', 'mac_valgrind'] |
Property changes on: tools/heapcheck/PRESUBMIT.py |
___________________________________________________________________ |
Added: svn:mergeinfo |