| 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", |
| 73 "fuzzer", | 74 "fuzzer", |
| 74 "message", | 75 "message", |
| 75 "preparser", | 76 "preparser", |
| 76 "intl", | 77 "intl", |
| 77 "unittests", | 78 "unittests", |
| 78 ], | 79 ], |
| 79 # This needs to stay in sync with test/default.isolate. | 80 # This needs to stay in sync with test/default.isolate. |
| 80 "default": [ | 81 "default": [ |
| 81 "debugger", | 82 "debugger", |
| 82 "mjsunit", | 83 "mjsunit", |
| 83 "cctest", | 84 "cctest", |
| 84 "inspector", | 85 "inspector", |
| 86 "mkgrokdump", |
| 85 "fuzzer", | 87 "fuzzer", |
| 86 "message", | 88 "message", |
| 87 "preparser", | 89 "preparser", |
| 88 "intl", | 90 "intl", |
| 89 "unittests", | 91 "unittests", |
| 90 ], | 92 ], |
| 91 # This needs to stay in sync with test/optimize_for_size.isolate. | 93 # This needs to stay in sync with test/optimize_for_size.isolate. |
| 92 "optimize_for_size": [ | 94 "optimize_for_size": [ |
| 93 "debugger", | 95 "debugger", |
| 94 "mjsunit", | 96 "mjsunit", |
| (...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 "--coverage-dir=%s" % options.sancov_dir]) | 926 "--coverage-dir=%s" % options.sancov_dir]) |
| 925 except: | 927 except: |
| 926 print >> sys.stderr, "Error: Merging sancov files failed." | 928 print >> sys.stderr, "Error: Merging sancov files failed." |
| 927 exit_code = 1 | 929 exit_code = 1 |
| 928 | 930 |
| 929 return exit_code | 931 return exit_code |
| 930 | 932 |
| 931 | 933 |
| 932 if __name__ == "__main__": | 934 if __name__ == "__main__": |
| 933 sys.exit(Main()) | 935 sys.exit(Main()) |
| OLD | NEW |