| Index: tools/test-wrapper-gypbuild.py
|
| diff --git a/tools/test-wrapper-gypbuild.py b/tools/test-wrapper-gypbuild.py
|
| index e9984d76c1f0b1f711a7a0c609156f8f4a8fec38..465ca88c3d98bf46fe6211119625d18b380795c1 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 data",
|
| + 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]
|
|
|