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

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

Issue 2194153002: [test] Use all test suites with the ignition alias (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/ignition.isolate ('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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "mjsunit", 78 "mjsunit",
79 "cctest", 79 "cctest",
80 "fuzzer", 80 "fuzzer",
81 "message", 81 "message",
82 "preparser", 82 "preparser",
83 "intl", 83 "intl",
84 "unittests", 84 "unittests",
85 "inspector_protocol_parser_test", 85 "inspector_protocol_parser_test",
86 ], 86 ],
87 # This needs to stay in sync with test/ignition.isolate. 87 # This needs to stay in sync with test/ignition.isolate.
88 # TODO(machenbach): This will be deprecated. Istead default or bot_default
89 # will be used together with ignition flags.
88 "ignition": [ 90 "ignition": [
89 "mjsunit", 91 "mjsunit",
90 "cctest", 92 "cctest",
91 "webkit", 93 "webkit",
94 "fuzzer",
92 "message", 95 "message",
96 "preparser",
97 "intl",
98 "unittests",
99 "inspector_protocol_parser_test",
93 ], 100 ],
94 # This needs to stay in sync with test/optimize_for_size.isolate. 101 # This needs to stay in sync with test/optimize_for_size.isolate.
95 "optimize_for_size": [ 102 "optimize_for_size": [
96 "mjsunit", 103 "mjsunit",
97 "cctest", 104 "cctest",
98 "webkit", 105 "webkit",
99 "intl", 106 "intl",
100 ], 107 ],
101 "unittests": [ 108 "unittests": [
102 "unittests", 109 "unittests",
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 "--coverage-dir=%s" % options.sancov_dir]) 881 "--coverage-dir=%s" % options.sancov_dir])
875 except: 882 except:
876 print >> sys.stderr, "Error: Merging sancov files failed." 883 print >> sys.stderr, "Error: Merging sancov files failed."
877 exit_code = 1 884 exit_code = 1
878 885
879 return exit_code 886 return exit_code
880 887
881 888
882 if __name__ == "__main__": 889 if __name__ == "__main__":
883 sys.exit(Main()) 890 sys.exit(Main())
OLDNEW
« no previous file with comments | « test/ignition.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698