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

Side by Side Diff: tools/gypv8sh.py

Issue 375273002: Fix typo in gypv8sh debugging code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« 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 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """This script is used by chrome_tests.gypi's js2webui action to maintain the 6 """This script is used by chrome_tests.gypi's js2webui action to maintain the
7 argument lists and to generate inlinable tests. 7 argument lists and to generate inlinable tests.
8 """ 8 """
9 9
10 import json 10 import json
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 if opts.verbose or opts.impotent: 43 if opts.verbose or opts.impotent:
44 print cmd 44 print cmd
45 if not opts.impotent: 45 if not opts.impotent:
46 try: 46 try:
47 p = subprocess.Popen( 47 p = subprocess.Popen(
48 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0) 48 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0)
49 out, err = p.communicate() 49 out, err = p.communicate()
50 if p.returncode: 50 if p.returncode:
51 # TODO(jochen): Remove once crbug.com/370551 is resolved. 51 # TODO(jochen): Remove once crbug.com/370551 is resolved.
52 if sys.platform == 'darwin': 52 if sys.platform == 'darwin':
53 cmd[:0] = [ 53 cmd[:0] = ['gdb', '-batch', '-ex', 'run', '-ex', 'bt', '-ex', 'quit',
54 'gdb', '-batch', '-ex', 'run', '-ex' 'bt', '-ex', 'quit', '-args'] 54 '-args']
55 p = subprocess.Popen( 55 p = subprocess.Popen(
56 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0) 56 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0)
57 out, err = p.communicate() 57 out, err = p.communicate()
58 raise Exception('Failed to run d8', out, err) 58 raise Exception('Failed to run d8', out, err)
59 with open(cxxoutfile, 'wb') as f: 59 with open(cxxoutfile, 'wb') as f:
60 f.write(out) 60 f.write(out)
61 shutil.copyfile(inputfile, jsoutfile) 61 shutil.copyfile(inputfile, jsoutfile)
62 except Exception, ex: 62 except Exception, ex:
63 if os.path.exists(cxxoutfile): 63 if os.path.exists(cxxoutfile):
64 os.remove(cxxoutfile) 64 os.remove(cxxoutfile)
65 if os.path.exists(jsoutfile): 65 if os.path.exists(jsoutfile):
66 os.remove(jsoutfile) 66 os.remove(jsoutfile)
67 raise 67 raise
68 68
69 69
70 if __name__ == '__main__': 70 if __name__ == '__main__':
71 sys.exit(main()) 71 sys.exit(main())
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