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

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

Issue 2141013002: [test] Remove NaCl support from test runner harness. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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/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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "android_arm64", 168 "android_arm64",
169 "android_ia32", 169 "android_ia32",
170 "android_x64", 170 "android_x64",
171 "arm", 171 "arm",
172 "ia32", 172 "ia32",
173 "x87", 173 "x87",
174 "mips", 174 "mips",
175 "mipsel", 175 "mipsel",
176 "mips64", 176 "mips64",
177 "mips64el", 177 "mips64el",
178 "nacl_ia32",
179 "nacl_x64",
180 "s390", 178 "s390",
181 "s390x", 179 "s390x",
182 "ppc", 180 "ppc",
183 "ppc64", 181 "ppc64",
184 "x64", 182 "x64",
185 "x32", 183 "x32",
186 "arm64"] 184 "arm64"]
187 # Double the timeout for these: 185 # Double the timeout for these:
188 SLOW_ARCHS = ["android_arm", 186 SLOW_ARCHS = ["android_arm",
189 "android_arm64", 187 "android_arm64",
190 "android_ia32", 188 "android_ia32",
191 "android_x64", 189 "android_x64",
192 "arm", 190 "arm",
193 "mips", 191 "mips",
194 "mipsel", 192 "mipsel",
195 "mips64", 193 "mips64",
196 "mips64el", 194 "mips64el",
197 "nacl_ia32",
198 "nacl_x64",
199 "s390", 195 "s390",
200 "s390x", 196 "s390x",
201 "x87", 197 "x87",
202 "arm64"] 198 "arm64"]
203 199
204 200
205 def BuildOptions(): 201 def BuildOptions():
206 result = optparse.OptionParser() 202 result = optparse.OptionParser()
207 result.usage = '%prog [options] [tests]' 203 result.usage = '%prog [options] [tests]'
208 result.description = """TESTS: %s""" % (TEST_MAP["default"]) 204 result.description = """TESTS: %s""" % (TEST_MAP["default"])
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 "--coverage-dir=%s" % options.sancov_dir]) 870 "--coverage-dir=%s" % options.sancov_dir])
875 except: 871 except:
876 print >> sys.stderr, "Error: Merging sancov files failed." 872 print >> sys.stderr, "Error: Merging sancov files failed."
877 exit_code = 1 873 exit_code = 1
878 874
879 return exit_code 875 return exit_code
880 876
881 877
882 if __name__ == "__main__": 878 if __name__ == "__main__":
883 sys.exit(Main()) 879 sys.exit(Main())
OLDNEW
« no previous file with comments | « tools/run-deopt-fuzzer.py ('k') | tools/run_perf.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698