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

Side by Side Diff: tools/presubmit.py

Issue 2589683003: [foozzie] Add sources metadata to failure output. (Closed)
Patch Set: presubmit Created 3 years, 12 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 | « tools/foozzie/v8_foozzie.py ('k') | 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 2012 the V8 project authors. All rights reserved. 3 # Copyright 2012 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 'java-script-call-frame.h', 335 'java-script-call-frame.h',
336 'jsmin.py', 336 'jsmin.py',
337 'libraries.cc', 337 'libraries.cc',
338 'libraries-empty.cc', 338 'libraries-empty.cc',
339 'lua_binarytrees.js', 339 'lua_binarytrees.js',
340 'memops.js', 340 'memops.js',
341 'poppler.js', 341 'poppler.js',
342 'primes.js', 342 'primes.js',
343 'raytrace.js', 343 'raytrace.js',
344 'regexp-pcre.js', 344 'regexp-pcre.js',
345 'resources-test1.js',
345 'rjsmin.py', 346 'rjsmin.py',
346 'script-breakpoint.h', 347 'script-breakpoint.h',
347 'sqlite.js', 348 'sqlite.js',
348 'sqlite-change-heap.js', 349 'sqlite-change-heap.js',
349 'sqlite-pointer-masking.js', 350 'sqlite-pointer-masking.js',
350 'sqlite-safe-heap.js', 351 'sqlite-safe-heap.js',
351 'v8-debugger-script.h', 352 'v8-debugger-script.h',
352 'v8-function-call.cc', 353 'v8-function-call.cc',
353 'v8-function-call.h', 354 'v8-function-call.h',
354 'v8-inspector-impl.cc', 355 'v8-inspector-impl.cc',
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 print "Running status-files check..." 501 print "Running status-files check..."
501 success &= StatusFilesProcessor().RunOnPath(workspace) 502 success &= StatusFilesProcessor().RunOnPath(workspace)
502 if success: 503 if success:
503 return 0 504 return 0
504 else: 505 else:
505 return 1 506 return 1
506 507
507 508
508 if __name__ == '__main__': 509 if __name__ == '__main__':
509 sys.exit(Main()) 510 sys.exit(Main())
OLDNEW
« no previous file with comments | « tools/foozzie/v8_foozzie.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698