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