[email protected] | 4f35c8b | 2012-12-10 12:49:27 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 | # Use of this source code is governed by a BSD-style license that can be |
| 5 | # found in the LICENSE file. |
| 6 | |
[email protected] | 4f18899 | 2013-08-14 22:06:41 | [diff] [blame] | 7 | """DEPRECATED! |
| 8 | TODO(bulach): remove me once all other repositories reference |
| 9 | 'test_runner.py perf' directly. |
[email protected] | 4f35c8b | 2012-12-10 12:49:27 | [diff] [blame] | 10 | """ |
| 11 | |
[email protected] | 4f35c8b | 2012-12-10 12:49:27 | [diff] [blame] | 12 | import optparse |
[email protected] | 4f35c8b | 2012-12-10 12:49:27 | [diff] [blame] | 13 | import os |
[email protected] | 4f35c8b | 2012-12-10 12:49:27 | [diff] [blame] | 14 | import sys |
| 15 | |
[email protected] | 4f35c8b | 2012-12-10 12:49:27 | [diff] [blame] | 16 | from pylib import cmd_helper |
[email protected] | 4f35c8b | 2012-12-10 12:49:27 | [diff] [blame] | 17 | |
| 18 | |
| 19 | def main(argv): |
| 20 | parser = optparse.OptionParser() |
| 21 | parser.add_option('-s', '--steps', |
| 22 | help='A JSON file containing all the steps to be ' |
| 23 | 'sharded.') |
[email protected] | ef715b0 | 2013-02-26 19:43:31 | [diff] [blame] | 24 | parser.add_option('--flaky_steps', |
| 25 | help='A JSON file containing steps that are flaky and ' |
| 26 | 'will have its exit code ignored.') |
[email protected] | 4f35c8b | 2012-12-10 12:49:27 | [diff] [blame] | 27 | parser.add_option('-p', '--print_results', |
| 28 | help='Only prints the results for the previously ' |
| 29 | 'executed step, do not run it again.') |
| 30 | options, urls = parser.parse_args(argv) |
| 31 | if options.print_results: |
[email protected] | 4f18899 | 2013-08-14 22:06:41 | [diff] [blame] | 32 | return cmd_helper.RunCmd(['build/android/test_runner.py', 'perf', |
| 33 | '--print-step', options.print_results]) |
| 34 | flaky_options = [] |
[email protected] | ef715b0 | 2013-02-26 19:43:31 | [diff] [blame] | 35 | if options.flaky_steps: |
[email protected] | 4f18899 | 2013-08-14 22:06:41 | [diff] [blame] | 36 | flaky_options = ['--flaky-steps', options.flaky_steps] |
[email protected] | 5b97ce5 | 2013-08-19 11:06:09 | [diff] [blame] | 37 | return cmd_helper.RunCmd(['build/android/test_runner.py', 'perf', '-v', |
[email protected] | 4f18899 | 2013-08-14 22:06:41 | [diff] [blame] | 38 | '--steps', options.steps] + flaky_options) |
[email protected] | 4f35c8b | 2012-12-10 12:49:27 | [diff] [blame] | 39 | |
| 40 | |
| 41 | if __name__ == '__main__': |
| 42 | sys.exit(main(sys.argv)) |