| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 readability/fn_size | 66 readability/fn_size |
| 67 readability/function | 67 readability/function |
| 68 readability/multiline_comment | 68 readability/multiline_comment |
| 69 readability/multiline_string | 69 readability/multiline_string |
| 70 readability/streams | 70 readability/streams |
| 71 readability/todo | 71 readability/todo |
| 72 readability/utf8 | 72 readability/utf8 |
| 73 runtime/arrays | 73 runtime/arrays |
| 74 runtime/casting | 74 runtime/casting |
| 75 runtime/deprecated_fn | 75 runtime/deprecated_fn |
| 76 runtime/explicit | |
| 77 runtime/int | 76 runtime/int |
| 78 runtime/memset | 77 runtime/memset |
| 79 runtime/mutex | 78 runtime/mutex |
| 80 runtime/nonconf | 79 runtime/nonconf |
| 81 runtime/printf | 80 runtime/printf |
| 82 runtime/printf_format | 81 runtime/printf_format |
| 83 runtime/references | 82 runtime/references |
| 84 runtime/rtti | 83 runtime/rtti |
| 85 runtime/sizeof | 84 runtime/sizeof |
| 86 runtime/string | 85 runtime/string |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 success = SourceProcessor().Run(workspace) and success | 442 success = SourceProcessor().Run(workspace) and success |
| 444 success = CheckGeneratedRuntimeTests(workspace) and success | 443 success = CheckGeneratedRuntimeTests(workspace) and success |
| 445 if success: | 444 if success: |
| 446 return 0 | 445 return 0 |
| 447 else: | 446 else: |
| 448 return 1 | 447 return 1 |
| 449 | 448 |
| 450 | 449 |
| 451 if __name__ == '__main__': | 450 if __name__ == '__main__': |
| 452 sys.exit(Main()) | 451 sys.exit(Main()) |
| OLD | NEW |