| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "default": [ | 72 "default": [ |
| 73 "mjsunit", | 73 "mjsunit", |
| 74 "cctest", | 74 "cctest", |
| 75 "message", | 75 "message", |
| 76 "preparser", | 76 "preparser", |
| 77 "intl", | 77 "intl", |
| 78 "unittests", | 78 "unittests", |
| 79 ], | 79 ], |
| 80 "ignition": [ | 80 "ignition": [ |
| 81 "mjsunit", | 81 "mjsunit", |
| 82 # TODO(rmcilroy): Enable cctest in a separate CL. | 82 "cctest", |
| 83 # "cctest", | |
| 84 ], | 83 ], |
| 85 "optimize_for_size": [ | 84 "optimize_for_size": [ |
| 86 "mjsunit", | 85 "mjsunit", |
| 87 "cctest", | 86 "cctest", |
| 88 "webkit", | 87 "webkit", |
| 89 "intl", | 88 "intl", |
| 90 ], | 89 ], |
| 91 "unittests": [ | 90 "unittests": [ |
| 92 "unittests", | 91 "unittests", |
| 93 ], | 92 ], |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 if exit_code == 1 and options.json_test_results: | 807 if exit_code == 1 and options.json_test_results: |
| 809 print("Force exit code 0 after failures. Json test results file generated " | 808 print("Force exit code 0 after failures. Json test results file generated " |
| 810 "with failure information.") | 809 "with failure information.") |
| 811 exit_code = 0 | 810 exit_code = 0 |
| 812 | 811 |
| 813 return exit_code | 812 return exit_code |
| 814 | 813 |
| 815 | 814 |
| 816 if __name__ == "__main__": | 815 if __name__ == "__main__": |
| 817 sys.exit(Main()) | 816 sys.exit(Main()) |
| OLD | NEW |