| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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()) |
| OLD | NEW |