| OLD | NEW |
| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 'generate_protocol_externs.py', | 329 'generate_protocol_externs.py', |
| 330 'injected-script.cc', | 330 'injected-script.cc', |
| 331 'injected-script.h', | 331 'injected-script.h', |
| 332 'injected-script-source.js', | 332 'injected-script-source.js', |
| 333 'java-script-call-frame.cc', | 333 'java-script-call-frame.cc', |
| 334 'java-script-call-frame.h', | 334 'java-script-call-frame.h', |
| 335 'jsmin.py', | 335 'jsmin.py', |
| 336 'libraries.cc', | 336 'libraries.cc', |
| 337 'libraries-empty.cc', | 337 'libraries-empty.cc', |
| 338 'lua_binarytrees.js', | 338 'lua_binarytrees.js', |
| 339 'meta-123.js', |
| 339 'memops.js', | 340 'memops.js', |
| 340 'poppler.js', | 341 'poppler.js', |
| 341 'primes.js', | 342 'primes.js', |
| 342 'raytrace.js', | 343 'raytrace.js', |
| 343 'regexp-pcre.js', | 344 'regexp-pcre.js', |
| 344 'resources-test1.js', | 345 'resources-123.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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 print "Running status-files check..." | 504 print "Running status-files check..." |
| 504 success &= StatusFilesProcessor().RunOnPath(workspace) | 505 success &= StatusFilesProcessor().RunOnPath(workspace) |
| 505 if success: | 506 if success: |
| 506 return 0 | 507 return 0 |
| 507 else: | 508 else: |
| 508 return 1 | 509 return 1 |
| 509 | 510 |
| 510 | 511 |
| 511 if __name__ == '__main__': | 512 if __name__ == '__main__': |
| 512 sys.exit(Main()) | 513 sys.exit(Main()) |
| OLD | NEW |