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

Side by Side Diff: tools/run-valgrind.py

Issue 1585093002: [test] Clean up valgrind runner. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Skip reachability Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # 2 #
3 # Copyright 2009 the V8 project authors. All rights reserved. 3 # Copyright 2009 the V8 project authors. All rights reserved.
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 11 matching lines...) Expand all
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 29
30 # Simple wrapper for running valgrind and checking the output on 30 # Simple wrapper for running valgrind and checking the output on
31 # stderr for memory leaks. 31 # stderr for memory leaks.
32 # Uses valgrind from third_party/valgrind. Assumes the executable is passed
33 # with a path relative to the v8 root.
32 34
35
36 from os import path
37 import platform
38 import re
33 import subprocess 39 import subprocess
34 import sys 40 import sys
35 import re 41
42 V8_ROOT = path.dirname(path.dirname(path.abspath(__file__)))
43 MACHINE = 'linux_x64' if platform.machine() == 'x86_64' else 'linux_x86'
44 VALGRIND_ROOT = path.join(V8_ROOT, 'third_party', 'valgrind', MACHINE)
45 VALGRIND_BIN = path.join(VALGRIND_ROOT, 'bin', 'valgrind')
46 VALGRIND_LIB = path.join(VALGRIND_ROOT, 'lib', 'valgrind')
36 47
37 VALGRIND_ARGUMENTS = [ 48 VALGRIND_ARGUMENTS = [
38 'valgrind', 49 VALGRIND_BIN,
39 '--error-exitcode=1', 50 '--error-exitcode=1',
40 '--leak-check=full', 51 '--leak-check=full',
41 '--smc-check=all' 52 '--smc-check=all',
42 ] 53 ]
43 54
55 if len(sys.argv) < 2:
56 print 'Please provide an executable to analyze.'
57 sys.exit(1)
58
59 executable = path.join(V8_ROOT, sys.argv[1])
60 if not path.exists(executable):
61 print 'Cannot find the file specified: %s' % executable
62 sys.exit(1)
63
44 # Compute the command line. 64 # Compute the command line.
45 command = VALGRIND_ARGUMENTS + sys.argv[1:] 65 command = VALGRIND_ARGUMENTS + [executable] + sys.argv[2:]
46 66
47 # Run valgrind. 67 # Run valgrind.
48 process = subprocess.Popen(command, stderr=subprocess.PIPE) 68 process = subprocess.Popen(
69 command,
70 stderr=subprocess.PIPE,
71 env={'VALGRIND_LIB': VALGRIND_LIB}
72 )
49 code = process.wait(); 73 code = process.wait();
50 errors = process.stderr.readlines(); 74 errors = process.stderr.readlines();
51 75
52 # If valgrind produced an error, we report that to the user. 76 # If valgrind produced an error, we report that to the user.
53 if code != 0: 77 if code != 0:
54 sys.stderr.writelines(errors) 78 sys.stderr.writelines(errors)
55 sys.exit(code) 79 sys.exit(code)
56 80
57 # Look through the leak details and make sure that we don't 81 # Look through the leak details and make sure that we don't
58 # have any definitely, indirectly, and possibly lost bytes. 82 # have any definitely, indirectly, and possibly lost bytes.
59 LEAK_RE = r"(?:definitely|indirectly|possibly) lost: " 83 LEAK_RE = r"(?:definitely|indirectly|possibly) lost: "
60 LEAK_LINE_MATCHER = re.compile(LEAK_RE) 84 LEAK_LINE_MATCHER = re.compile(LEAK_RE)
61 LEAK_OKAY_MATCHER = re.compile(r"lost: 0 bytes in 0 blocks") 85 LEAK_OKAY_MATCHER = re.compile(r"lost: 0 bytes in 0 blocks")
62 leaks = [] 86 leaks = []
63 for line in errors: 87 for line in errors:
64 if LEAK_LINE_MATCHER.search(line): 88 if LEAK_LINE_MATCHER.search(line):
65 leaks.append(line) 89 leaks.append(line)
66 if not LEAK_OKAY_MATCHER.search(line): 90 if not LEAK_OKAY_MATCHER.search(line):
67 sys.stderr.writelines(errors) 91 sys.stderr.writelines(errors)
68 sys.exit(1) 92 sys.exit(1)
69 93
70 # Make sure we found between 2 and 3 leak lines. 94 # Make sure we found between 2 and 3 leak lines.
71 if len(leaks) < 2 or len(leaks) > 3: 95 if len(leaks) < 2 or len(leaks) > 3:
72 sys.stderr.writelines(errors) 96 sys.stderr.writelines(errors)
73 sys.stderr.write('\n\n#### Malformed valgrind output.\n#### Exiting.\n') 97 sys.stderr.write('\n\n#### Malformed valgrind output.\n#### Exiting.\n')
74 sys.exit(1) 98 sys.exit(1)
75 99
76 # No leaks found. 100 # No leaks found.
101 sys.stderr.writelines(errors)
77 sys.exit(0) 102 sys.exit(0)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698