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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 # expected runtimes (suites with slow test cases first). These groups are | 63 # expected runtimes (suites with slow test cases first). These groups are |
64 # invoked in seperate steps on the bots. | 64 # invoked in seperate steps on the bots. |
65 TEST_MAP = { | 65 TEST_MAP = { |
66 # This needs to stay in sync with test/bot_default.isolate. | 66 # This needs to stay in sync with test/bot_default.isolate. |
67 "bot_default": [ | 67 "bot_default": [ |
68 "debugger", | 68 "debugger", |
69 "mjsunit", | 69 "mjsunit", |
70 "cctest", | 70 "cctest", |
71 "inspector", | 71 "inspector", |
72 "webkit", | 72 "webkit", |
73 "mkgrokdump", | |
74 "fuzzer", | 73 "fuzzer", |
75 "message", | 74 "message", |
76 "preparser", | 75 "preparser", |
77 "intl", | 76 "intl", |
78 "unittests", | 77 "unittests", |
79 ], | 78 ], |
80 # This needs to stay in sync with test/default.isolate. | 79 # This needs to stay in sync with test/default.isolate. |
81 "default": [ | 80 "default": [ |
82 "debugger", | 81 "debugger", |
83 "mjsunit", | 82 "mjsunit", |
84 "cctest", | 83 "cctest", |
85 "inspector", | 84 "inspector", |
86 "mkgrokdump", | |
87 "fuzzer", | 85 "fuzzer", |
88 "message", | 86 "message", |
89 "preparser", | 87 "preparser", |
90 "intl", | 88 "intl", |
91 "unittests", | 89 "unittests", |
92 ], | 90 ], |
93 # This needs to stay in sync with test/optimize_for_size.isolate. | 91 # This needs to stay in sync with test/optimize_for_size.isolate. |
94 "optimize_for_size": [ | 92 "optimize_for_size": [ |
95 "debugger", | 93 "debugger", |
96 "mjsunit", | 94 "mjsunit", |
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 "--coverage-dir=%s" % options.sancov_dir]) | 924 "--coverage-dir=%s" % options.sancov_dir]) |
927 except: | 925 except: |
928 print >> sys.stderr, "Error: Merging sancov files failed." | 926 print >> sys.stderr, "Error: Merging sancov files failed." |
929 exit_code = 1 | 927 exit_code = 1 |
930 | 928 |
931 return exit_code | 929 return exit_code |
932 | 930 |
933 | 931 |
934 if __name__ == "__main__": | 932 if __name__ == "__main__": |
935 sys.exit(Main()) | 933 sys.exit(Main()) |
OLD | NEW |