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

Side by Side Diff: catapult_build/build_steps.py

Issue 2950723002: Add an end-to-end test for symbolize_trace on macOS. (Closed)
Patch Set: lint Created 3 years, 6 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 | « no previous file | catapult_build/run_with_typ.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 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import argparse 5 import argparse
6 import json 6 import json
7 import os 7 import os
8 import sys 8 import sys
9 9
10 # This is the list of tests to run. It is a dictionary with the following 10 # This is the list of tests to run. It is a dictionary with the following
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'name': 'Devil Python Tests', 84 'name': 'Devil Python Tests',
85 'path': 'devil/bin/run_py_tests', 85 'path': 'devil/bin/run_py_tests',
86 'disabled': ['mac', 'win'], 86 'disabled': ['mac', 'win'],
87 }, 87 },
88 { 88 {
89 'name': 'eslint Tests', 89 'name': 'eslint Tests',
90 'path': 'common/eslint/bin/run_tests', 90 'path': 'common/eslint/bin/run_tests',
91 'disabled': ['android'], 91 'disabled': ['android'],
92 }, 92 },
93 { 93 {
94 'name': 'Native Heap Symbolizer Tests',
95 'path': 'tracing/bin/run_symbolizer_tests',
96 'disabled': ['android'],
97 },
98 {
94 'name': 'Py-vulcanize Tests', 99 'name': 'Py-vulcanize Tests',
95 'path': 'third_party/py_vulcanize/bin/run_py_tests', 100 'path': 'third_party/py_vulcanize/bin/run_py_tests',
96 'additional_args': ['--no-install-hooks'], 101 'additional_args': ['--no-install-hooks'],
97 'disabled': ['android'], 102 'disabled': ['android'],
98 }, 103 },
99 { 104 {
100 'name': 'Systrace Tests', 105 'name': 'Systrace Tests',
101 'path': 'systrace/bin/run_tests', 106 'path': 'systrace/bin/run_tests',
102 }, 107 },
103 { 108 {
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 step['env']['CHROME_DEVEL_SANDBOX'] = '/opt/chromium/chrome_sandbox' 255 step['env']['CHROME_DEVEL_SANDBOX'] = '/opt/chromium/chrome_sandbox'
251 if test.get('outputs_presentation_json'): 256 if test.get('outputs_presentation_json'):
252 step['outputs_presentation_json'] = True 257 step['outputs_presentation_json'] = True
253 steps.append(step) 258 steps.append(step)
254 with open(args.output_json, 'w') as outfile: 259 with open(args.output_json, 'w') as outfile:
255 json.dump(steps, outfile) 260 json.dump(steps, outfile)
256 261
257 262
258 if __name__ == '__main__': 263 if __name__ == '__main__':
259 main(sys.argv[1:]) 264 main(sys.argv[1:])
OLDNEW
« no previous file with comments | « no previous file | catapult_build/run_with_typ.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698