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

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

Issue 2214283003: [test] Activate ignition_staging variant (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Skip one cpu profiler test Created 4 years, 4 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 | « test/mjsunit/mjsunit.status ('k') | tools/testrunner/local/variants.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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "webkit", 91 "webkit",
92 "intl", 92 "intl",
93 ], 93 ],
94 "unittests": [ 94 "unittests": [
95 "unittests", 95 "unittests",
96 ], 96 ],
97 } 97 }
98 98
99 TIMEOUT_DEFAULT = 60 99 TIMEOUT_DEFAULT = 60
100 100
101 # TODO(machenbach): Add ignition_staging variant. 101 VARIANTS = ["default", "turbofan", "ignition_staging"]
102 VARIANTS = ["default", "turbofan"]
103 102
104 MORE_VARIANTS = [ 103 MORE_VARIANTS = [
105 "ignition", 104 "ignition",
106 "stress", 105 "stress",
107 "turbofan_opt", 106 "turbofan_opt",
108 ] 107 ]
109 108
110 EXHAUSTIVE_VARIANTS = VARIANTS + MORE_VARIANTS 109 EXHAUSTIVE_VARIANTS = VARIANTS + MORE_VARIANTS
111 110
112 VARIANT_ALIASES = { 111 VARIANT_ALIASES = {
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 "--coverage-dir=%s" % options.sancov_dir]) 882 "--coverage-dir=%s" % options.sancov_dir])
884 except: 883 except:
885 print >> sys.stderr, "Error: Merging sancov files failed." 884 print >> sys.stderr, "Error: Merging sancov files failed."
886 exit_code = 1 885 exit_code = 1
887 886
888 return exit_code 887 return exit_code
889 888
890 889
891 if __name__ == "__main__": 890 if __name__ == "__main__":
892 sys.exit(Main()) 891 sys.exit(Main())
OLDNEW
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | tools/testrunner/local/variants.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698