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

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

Issue 966773005: introduce android_x64 build target (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: linker issue Created 5 years, 9 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 | « build/android.gypi ('k') | tools/run_perf.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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 } 123 }
124 124
125 GC_STRESS_FLAGS = ["--gc-interval=500", "--stress-compaction", 125 GC_STRESS_FLAGS = ["--gc-interval=500", "--stress-compaction",
126 "--concurrent-recompilation-queue-length=64", 126 "--concurrent-recompilation-queue-length=64",
127 "--concurrent-recompilation-delay=500", 127 "--concurrent-recompilation-delay=500",
128 "--concurrent-recompilation"] 128 "--concurrent-recompilation"]
129 129
130 SUPPORTED_ARCHS = ["android_arm", 130 SUPPORTED_ARCHS = ["android_arm",
131 "android_arm64", 131 "android_arm64",
132 "android_ia32", 132 "android_ia32",
133 "android_x64",
133 "arm", 134 "arm",
134 "ia32", 135 "ia32",
135 "x87", 136 "x87",
136 "mips", 137 "mips",
137 "mipsel", 138 "mipsel",
138 "mips64el", 139 "mips64el",
139 "nacl_ia32", 140 "nacl_ia32",
140 "nacl_x64", 141 "nacl_x64",
141 "ppc", 142 "ppc",
142 "ppc64", 143 "ppc64",
143 "x64", 144 "x64",
144 "x32", 145 "x32",
145 "arm64"] 146 "arm64"]
146 # Double the timeout for these: 147 # Double the timeout for these:
147 SLOW_ARCHS = ["android_arm", 148 SLOW_ARCHS = ["android_arm",
148 "android_arm64", 149 "android_arm64",
149 "android_ia32", 150 "android_ia32",
151 "android_x64",
150 "arm", 152 "arm",
151 "mips", 153 "mips",
152 "mipsel", 154 "mipsel",
153 "mips64el", 155 "mips64el",
154 "nacl_ia32", 156 "nacl_ia32",
155 "nacl_x64", 157 "nacl_x64",
156 "x87", 158 "x87",
157 "arm64"] 159 "arm64"]
158 160
159 161
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 exit_code = runner.Run(options.j) 627 exit_code = runner.Run(options.j)
626 overall_duration = time.time() - start_time 628 overall_duration = time.time() - start_time
627 629
628 if options.time: 630 if options.time:
629 verbose.PrintTestDurations(suites, overall_duration) 631 verbose.PrintTestDurations(suites, overall_duration)
630 return exit_code 632 return exit_code
631 633
632 634
633 if __name__ == "__main__": 635 if __name__ == "__main__":
634 sys.exit(Main()) 636 sys.exit(Main())
OLDNEW
« no previous file with comments | « build/android.gypi ('k') | tools/run_perf.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698