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

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

Issue 1783773003: [testing] Extend interpreter testing to message suite. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_interpreter-fix-throw-position
Patch Set: Rebased. Created 4 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
« test/message/message.status ('K') | « test/message/message.status ('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 "fuzzer", 78 "fuzzer",
79 "message", 79 "message",
80 "preparser", 80 "preparser",
81 "intl", 81 "intl",
82 "unittests", 82 "unittests",
83 ], 83 ],
84 # This needs to stay in sync with test/ignition.isolate. 84 # This needs to stay in sync with test/ignition.isolate.
85 "ignition": [ 85 "ignition": [
86 "mjsunit", 86 "mjsunit",
87 "cctest", 87 "cctest",
88 "message",
88 ], 89 ],
89 # This needs to stay in sync with test/optimize_for_size.isolate. 90 # This needs to stay in sync with test/optimize_for_size.isolate.
90 "optimize_for_size": [ 91 "optimize_for_size": [
91 "mjsunit", 92 "mjsunit",
92 "cctest", 93 "cctest",
93 "webkit", 94 "webkit",
94 "intl", 95 "intl",
95 ], 96 ],
96 "unittests": [ 97 "unittests": [
97 "unittests", 98 "unittests",
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 "--coverage-dir=%s" % options.sancov_dir]) 836 "--coverage-dir=%s" % options.sancov_dir])
836 except: 837 except:
837 print >> sys.stderr, "Error: Merging sancov files failed." 838 print >> sys.stderr, "Error: Merging sancov files failed."
838 exit_code = 1 839 exit_code = 1
839 840
840 return exit_code 841 return exit_code
841 842
842 843
843 if __name__ == "__main__": 844 if __name__ == "__main__":
844 sys.exit(Main()) 845 sys.exit(Main())
OLDNEW
« test/message/message.status ('K') | « test/message/message.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698