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

Side by Side Diff: tools/presubmit.py

Issue 1105483002: [mjsunit] Import asm.js test case for poppler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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 | « test/mjsunit/mjsunit.status ('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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 'crypto.js', 334 'crypto.js',
335 'daemon.py', 335 'daemon.py',
336 'earley-boyer.js', 336 'earley-boyer.js',
337 'fannkuch.js', 337 'fannkuch.js',
338 'fasta.js', 338 'fasta.js',
339 'jsmin.py', 339 'jsmin.py',
340 'libraries.cc', 340 'libraries.cc',
341 'libraries-empty.cc', 341 'libraries-empty.cc',
342 'lua_binarytrees.js', 342 'lua_binarytrees.js',
343 'memops.js', 343 'memops.js',
344 'poppler.js',
344 'primes.js', 345 'primes.js',
345 'raytrace.js', 346 'raytrace.js',
346 'regexp-pcre.js', 347 'regexp-pcre.js',
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 'gnuplot-4.6.3-emscripten.js', 352 'gnuplot-4.6.3-emscripten.js',
352 'zlib.js'] 353 'zlib.js']
353 IGNORE_TABS = IGNORE_COPYRIGHTS + ['unicode-test.js', 'html-comments.js'] 354 IGNORE_TABS = IGNORE_COPYRIGHTS + ['unicode-test.js', 'html-comments.js']
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 success = CheckRuntimeVsNativesNameClashes(workspace) and success 492 success = CheckRuntimeVsNativesNameClashes(workspace) and success
492 success = CheckExternalReferenceRegistration(workspace) and success 493 success = CheckExternalReferenceRegistration(workspace) and success
493 if success: 494 if success:
494 return 0 495 return 0
495 else: 496 else:
496 return 1 497 return 1
497 498
498 499
499 if __name__ == '__main__': 500 if __name__ == '__main__':
500 sys.exit(Main()) 501 sys.exit(Main())
OLDNEW
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698