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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "android_arm64", | 102 "android_arm64", |
103 "android_ia32", | 103 "android_ia32", |
104 "arm", | 104 "arm", |
105 "ia32", | 105 "ia32", |
106 "x87", | 106 "x87", |
107 "mips", | 107 "mips", |
108 "mipsel", | 108 "mipsel", |
109 "mips64el", | 109 "mips64el", |
110 "nacl_ia32", | 110 "nacl_ia32", |
111 "nacl_x64", | 111 "nacl_x64", |
| 112 "ppc", |
| 113 "ppc64", |
112 "x64", | 114 "x64", |
113 "x32", | 115 "x32", |
114 "arm64"] | 116 "arm64"] |
115 # Double the timeout for these: | 117 # Double the timeout for these: |
116 SLOW_ARCHS = ["android_arm", | 118 SLOW_ARCHS = ["android_arm", |
117 "android_arm64", | 119 "android_arm64", |
118 "android_ia32", | 120 "android_ia32", |
119 "arm", | 121 "arm", |
120 "mips", | 122 "mips", |
121 "mipsel", | 123 "mipsel", |
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
585 exit_code = runner.Run(options.j) | 587 exit_code = runner.Run(options.j) |
586 overall_duration = time.time() - start_time | 588 overall_duration = time.time() - start_time |
587 | 589 |
588 if options.time: | 590 if options.time: |
589 verbose.PrintTestDurations(suites, overall_duration) | 591 verbose.PrintTestDurations(suites, overall_duration) |
590 return exit_code | 592 return exit_code |
591 | 593 |
592 | 594 |
593 if __name__ == "__main__": | 595 if __name__ == "__main__": |
594 sys.exit(Main()) | 596 sys.exit(Main()) |
OLD | NEW |