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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 "android_arm64", | 168 "android_arm64", |
169 "android_ia32", | 169 "android_ia32", |
170 "android_x64", | 170 "android_x64", |
171 "arm", | 171 "arm", |
172 "ia32", | 172 "ia32", |
173 "x87", | 173 "x87", |
174 "mips", | 174 "mips", |
175 "mipsel", | 175 "mipsel", |
176 "mips64", | 176 "mips64", |
177 "mips64el", | 177 "mips64el", |
178 "nacl_ia32", | |
179 "nacl_x64", | |
180 "s390", | 178 "s390", |
181 "s390x", | 179 "s390x", |
182 "ppc", | 180 "ppc", |
183 "ppc64", | 181 "ppc64", |
184 "x64", | 182 "x64", |
185 "x32", | 183 "x32", |
186 "arm64"] | 184 "arm64"] |
187 # Double the timeout for these: | 185 # Double the timeout for these: |
188 SLOW_ARCHS = ["android_arm", | 186 SLOW_ARCHS = ["android_arm", |
189 "android_arm64", | 187 "android_arm64", |
190 "android_ia32", | 188 "android_ia32", |
191 "android_x64", | 189 "android_x64", |
192 "arm", | 190 "arm", |
193 "mips", | 191 "mips", |
194 "mipsel", | 192 "mipsel", |
195 "mips64", | 193 "mips64", |
196 "mips64el", | 194 "mips64el", |
197 "nacl_ia32", | |
198 "nacl_x64", | |
199 "s390", | 195 "s390", |
200 "s390x", | 196 "s390x", |
201 "x87", | 197 "x87", |
202 "arm64"] | 198 "arm64"] |
203 | 199 |
204 | 200 |
205 def BuildOptions(): | 201 def BuildOptions(): |
206 result = optparse.OptionParser() | 202 result = optparse.OptionParser() |
207 result.usage = '%prog [options] [tests]' | 203 result.usage = '%prog [options] [tests]' |
208 result.description = """TESTS: %s""" % (TEST_MAP["default"]) | 204 result.description = """TESTS: %s""" % (TEST_MAP["default"]) |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
874 "--coverage-dir=%s" % options.sancov_dir]) | 870 "--coverage-dir=%s" % options.sancov_dir]) |
875 except: | 871 except: |
876 print >> sys.stderr, "Error: Merging sancov files failed." | 872 print >> sys.stderr, "Error: Merging sancov files failed." |
877 exit_code = 1 | 873 exit_code = 1 |
878 | 874 |
879 return exit_code | 875 return exit_code |
880 | 876 |
881 | 877 |
882 if __name__ == "__main__": | 878 if __name__ == "__main__": |
883 sys.exit(Main()) | 879 sys.exit(Main()) |
OLD | NEW |