summaryrefslogtreecommitdiffstats
path: root/tools/heapcheck/heapcheck_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/heapcheck/heapcheck_test.py')
-rw-r--r--tools/heapcheck/heapcheck_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/heapcheck/heapcheck_test.py b/tools/heapcheck/heapcheck_test.py
index 178a35f..7a0132c 100644
--- a/tools/heapcheck/heapcheck_test.py
+++ b/tools/heapcheck/heapcheck_test.py
@@ -116,15 +116,15 @@ class HeapcheckWrapper(object):
# Generate the suppression iff the stack contains more than one
# frame (otherwise it's likely to be broken)
if len(cur_stack) > 1:
- print 'Suppression:\n{'
+ print '\nSuppression:\n{'
print ' <insert_a_suppression_name_here>'
print ' Heapcheck:Leak'
for frame in cur_stack:
print ' fun:' + frame
- print '}'
+ print '}\n\n\n'
else:
print ('This stack may be broken due to omitted frame pointers. '
- 'It''s not recommended to suppress it')
+ 'It is not recommended to suppress it.')
else:
# Update the suppressions histogram.
if description in used_suppressions: