| 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 "nacl_ia32", | 86 "nacl_ia32", |
| 87 "nacl_x64", | 87 "nacl_x64", |
| 88 "x64", | 88 "x64", |
| 89 "x32", |
| 89 "arm64"] | 90 "arm64"] |
| 90 # Double the timeout for these: | 91 # Double the timeout for these: |
| 91 SLOW_ARCHS = ["android_arm", | 92 SLOW_ARCHS = ["android_arm", |
| 92 "android_arm64", | 93 "android_arm64", |
| 93 "android_ia32", | 94 "android_ia32", |
| 94 "arm", | 95 "arm", |
| 95 "mips", | 96 "mips", |
| 96 "mipsel", | 97 "mipsel", |
| 97 "nacl_ia32", | 98 "nacl_ia32", |
| 98 "nacl_x64", | 99 "nacl_x64", |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 exit_code = runner.Run(options.j) | 507 exit_code = runner.Run(options.j) |
| 507 overall_duration = time.time() - start_time | 508 overall_duration = time.time() - start_time |
| 508 | 509 |
| 509 if options.time: | 510 if options.time: |
| 510 verbose.PrintTestDurations(suites, overall_duration) | 511 verbose.PrintTestDurations(suites, overall_duration) |
| 511 return exit_code | 512 return exit_code |
| 512 | 513 |
| 513 | 514 |
| 514 if __name__ == "__main__": | 515 if __name__ == "__main__": |
| 515 sys.exit(Main()) | 516 sys.exit(Main()) |
| OLD | NEW |