| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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:]) |
| OLD | NEW |