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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 | 104 |
105 TIMEOUT_DEFAULT = 60 | 105 TIMEOUT_DEFAULT = 60 |
106 | 106 |
107 VARIANTS = ["default", "turbofan", "ignition_staging"] | 107 VARIANTS = ["default", "turbofan", "ignition_staging"] |
108 | 108 |
109 MORE_VARIANTS = [ | 109 MORE_VARIANTS = [ |
110 "ignition", | 110 "ignition", |
111 "stress", | 111 "stress", |
112 "turbofan_opt", | 112 "turbofan_opt", |
113 "asm_wasm", | 113 "asm_wasm", |
| 114 "wasm_traps", |
114 ] | 115 ] |
115 | 116 |
116 EXHAUSTIVE_VARIANTS = VARIANTS + MORE_VARIANTS | 117 EXHAUSTIVE_VARIANTS = VARIANTS + MORE_VARIANTS |
117 | 118 |
118 VARIANT_ALIASES = { | 119 VARIANT_ALIASES = { |
119 # The default for developer workstations. | 120 # The default for developer workstations. |
120 "dev": VARIANTS, | 121 "dev": VARIANTS, |
121 # Additional variants, run on all bots. | 122 # Additional variants, run on all bots. |
122 "more": MORE_VARIANTS, | 123 "more": MORE_VARIANTS, |
123 # Additional variants, run on a subset of bots. | 124 # Additional variants, run on a subset of bots. |
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
919 "--coverage-dir=%s" % options.sancov_dir]) | 920 "--coverage-dir=%s" % options.sancov_dir]) |
920 except: | 921 except: |
921 print >> sys.stderr, "Error: Merging sancov files failed." | 922 print >> sys.stderr, "Error: Merging sancov files failed." |
922 exit_code = 1 | 923 exit_code = 1 |
923 | 924 |
924 return exit_code | 925 return exit_code |
925 | 926 |
926 | 927 |
927 if __name__ == "__main__": | 928 if __name__ == "__main__": |
928 sys.exit(Main()) | 929 sys.exit(Main()) |
OLD | NEW |