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

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

Issue 18014003: Add X32 port into V8 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Rebased with bleeding_edge Created 6 years, 6 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
« src/base/build_config.h ('K') | « tools/gyp/v8.gyp ('k') | no next file » | 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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())
OLDNEW
« src/base/build_config.h ('K') | « tools/gyp/v8.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698