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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 # This needs to stay in sync with test/bot_default.isolate. | 64 # This needs to stay in sync with test/bot_default.isolate. |
65 "bot_default": [ | 65 "bot_default": [ |
66 "mjsunit", | 66 "mjsunit", |
67 "cctest", | 67 "cctest", |
68 "webkit", | 68 "webkit", |
69 "fuzzer", | 69 "fuzzer", |
70 "message", | 70 "message", |
71 "preparser", | 71 "preparser", |
72 "intl", | 72 "intl", |
73 "unittests", | 73 "unittests", |
| 74 "inspector_protocol_parser_test", |
74 ], | 75 ], |
75 # This needs to stay in sync with test/default.isolate. | 76 # This needs to stay in sync with test/default.isolate. |
76 "default": [ | 77 "default": [ |
77 "mjsunit", | 78 "mjsunit", |
78 "cctest", | 79 "cctest", |
79 "fuzzer", | 80 "fuzzer", |
80 "message", | 81 "message", |
81 "preparser", | 82 "preparser", |
82 "intl", | 83 "intl", |
83 "unittests", | 84 "unittests", |
| 85 "inspector_protocol_parser_test", |
84 ], | 86 ], |
85 # This needs to stay in sync with test/ignition.isolate. | 87 # This needs to stay in sync with test/ignition.isolate. |
86 "ignition": [ | 88 "ignition": [ |
87 "mjsunit", | 89 "mjsunit", |
88 "cctest", | 90 "cctest", |
89 "webkit", | 91 "webkit", |
90 "message", | 92 "message", |
91 ], | 93 ], |
92 # This needs to stay in sync with test/optimize_for_size.isolate. | 94 # This needs to stay in sync with test/optimize_for_size.isolate. |
93 "optimize_for_size": [ | 95 "optimize_for_size": [ |
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 "--coverage-dir=%s" % options.sancov_dir]) | 874 "--coverage-dir=%s" % options.sancov_dir]) |
873 except: | 875 except: |
874 print >> sys.stderr, "Error: Merging sancov files failed." | 876 print >> sys.stderr, "Error: Merging sancov files failed." |
875 exit_code = 1 | 877 exit_code = 1 |
876 | 878 |
877 return exit_code | 879 return exit_code |
878 | 880 |
879 | 881 |
880 if __name__ == "__main__": | 882 if __name__ == "__main__": |
881 sys.exit(Main()) | 883 sys.exit(Main()) |
OLD | NEW |