Chromium Code Reviews| Index: tools/test-wrapper-gypbuild.py |
| diff --git a/tools/test-wrapper-gypbuild.py b/tools/test-wrapper-gypbuild.py |
| index e9984d76c1f0b1f711a7a0c609156f8f4a8fec38..991ac25eeebfd262473dc97e8824ba782dd88d95 100755 |
| --- a/tools/test-wrapper-gypbuild.py |
| +++ b/tools/test-wrapper-gypbuild.py |
| @@ -73,6 +73,8 @@ def BuildOptions(): |
| choices=PROGRESS_INDICATORS, default="mono") |
| result.add_option("--report", help="Print a summary of the tests to be run", |
| default=False, action="store_true") |
| + result.add_option("--download-data", help="Download missing test suite dara", |
|
Yang
2012/03/07 12:30:35
Which dara do you mean? http://en.wikipedia.org/wi
|
| + default=False, action="store_true") |
| result.add_option("-s", "--suite", help="A test suite", |
| default=[], action="append") |
| result.add_option("-t", "--timeout", help="Timeout in seconds", |
| @@ -161,6 +163,8 @@ def PassOnOptions(options): |
| result += ['--progress=' + options.progress] |
| if options.report: |
| result += ['--report'] |
| + if options.download_data: |
| + result += ['--download-data'] |
| if options.suite != []: |
| for suite in options.suite: |
| result += ['--suite=../../test/' + suite] |