Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(642)

Side by Side Diff: tools/run-tests.py

Issue 817143002: Contribution of PowerPC port (continuation of 422063005) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Contribution of PowerPC port - rebase and address initial set of comments Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/run-deopt-fuzzer.py ('k') | tools/testrunner/local/statusfile.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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())
OLDNEW
« no previous file with comments | « tools/run-deopt-fuzzer.py ('k') | tools/testrunner/local/statusfile.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698