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

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

Issue 422063005: Contribution of PowerPC port. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: re-upload - catch up to 8/19 level Created 6 years, 3 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 | Annotate | Revision Log
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "android_arm64", 82 "android_arm64",
83 "android_ia32", 83 "android_ia32",
84 "arm", 84 "arm",
85 "ia32", 85 "ia32",
86 "x87", 86 "x87",
87 "mips", 87 "mips",
88 "mipsel", 88 "mipsel",
89 "mips64el", 89 "mips64el",
90 "nacl_ia32", 90 "nacl_ia32",
91 "nacl_x64", 91 "nacl_x64",
92 "ppc",
93 "ppc64",
92 "x64", 94 "x64",
93 "x32", 95 "x32",
94 "arm64"] 96 "arm64"]
95 # Double the timeout for these: 97 # Double the timeout for these:
96 SLOW_ARCHS = ["android_arm", 98 SLOW_ARCHS = ["android_arm",
97 "android_arm64", 99 "android_arm64",
98 "android_ia32", 100 "android_ia32",
99 "arm", 101 "arm",
100 "mips", 102 "mips",
101 "mipsel", 103 "mipsel",
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 exit_code = runner.Run(options.j) 544 exit_code = runner.Run(options.j)
543 overall_duration = time.time() - start_time 545 overall_duration = time.time() - start_time
544 546
545 if options.time: 547 if options.time:
546 verbose.PrintTestDurations(suites, overall_duration) 548 verbose.PrintTestDurations(suites, overall_duration)
547 return exit_code 549 return exit_code
548 550
549 551
550 if __name__ == "__main__": 552 if __name__ == "__main__":
551 sys.exit(Main()) 553 sys.exit(Main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698