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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "android_arm64", | 79 "android_arm64", |
80 "android_ia32", | 80 "android_ia32", |
81 "arm", | 81 "arm", |
82 "ia32", | 82 "ia32", |
83 "x87", | 83 "x87", |
84 "mips", | 84 "mips", |
85 "mipsel", | 85 "mipsel", |
86 "mips64el", | 86 "mips64el", |
87 "nacl_ia32", | 87 "nacl_ia32", |
88 "nacl_x64", | 88 "nacl_x64", |
| 89 "ppc", |
| 90 "ppc64", |
89 "x64", | 91 "x64", |
90 "x32", | 92 "x32", |
91 "arm64"] | 93 "arm64"] |
92 # Double the timeout for these: | 94 # Double the timeout for these: |
93 SLOW_ARCHS = ["android_arm", | 95 SLOW_ARCHS = ["android_arm", |
94 "android_arm64", | 96 "android_arm64", |
95 "android_ia32", | 97 "android_ia32", |
96 "arm", | 98 "arm", |
97 "mips", | 99 "mips", |
98 "mipsel", | 100 "mipsel", |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 exit_code = runner.Run(options.j) | 541 exit_code = runner.Run(options.j) |
540 overall_duration = time.time() - start_time | 542 overall_duration = time.time() - start_time |
541 | 543 |
542 if options.time: | 544 if options.time: |
543 verbose.PrintTestDurations(suites, overall_duration) | 545 verbose.PrintTestDurations(suites, overall_duration) |
544 return exit_code | 546 return exit_code |
545 | 547 |
546 | 548 |
547 if __name__ == "__main__": | 549 if __name__ == "__main__": |
548 sys.exit(Main()) | 550 sys.exit(Main()) |
OLD | NEW |