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", | |
75 ], | 74 ], |
76 # This needs to stay in sync with test/default.isolate. | 75 # This needs to stay in sync with test/default.isolate. |
77 "default": [ | 76 "default": [ |
78 "mjsunit", | 77 "mjsunit", |
79 "cctest", | 78 "cctest", |
80 "fuzzer", | 79 "fuzzer", |
81 "message", | 80 "message", |
82 "preparser", | 81 "preparser", |
83 "intl", | 82 "intl", |
84 "unittests", | 83 "unittests", |
85 "inspector_protocol_parser_test", | |
86 ], | 84 ], |
87 # This needs to stay in sync with test/optimize_for_size.isolate. | 85 # This needs to stay in sync with test/optimize_for_size.isolate. |
88 "optimize_for_size": [ | 86 "optimize_for_size": [ |
89 "mjsunit", | 87 "mjsunit", |
90 "cctest", | 88 "cctest", |
91 "webkit", | 89 "webkit", |
92 "intl", | 90 "intl", |
93 ], | 91 ], |
94 "unittests": [ | 92 "unittests": [ |
95 "unittests", | 93 "unittests", |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 "--coverage-dir=%s" % options.sancov_dir]) | 879 "--coverage-dir=%s" % options.sancov_dir]) |
882 except: | 880 except: |
883 print >> sys.stderr, "Error: Merging sancov files failed." | 881 print >> sys.stderr, "Error: Merging sancov files failed." |
884 exit_code = 1 | 882 exit_code = 1 |
885 | 883 |
886 return exit_code | 884 return exit_code |
887 | 885 |
888 | 886 |
889 if __name__ == "__main__": | 887 if __name__ == "__main__": |
890 sys.exit(Main()) | 888 sys.exit(Main()) |
OLD | NEW |