| Index: testing/scripts/common.py
|
| diff --git a/testing/scripts/common.py b/testing/scripts/common.py
|
| index f3617c7111ba0ada2a0bf3ce6e0c2de9e8051cf9..1aefcd5b79557d7eaeef85b379bf8fe093b5b1c9 100644
|
| --- a/testing/scripts/common.py
|
| +++ b/testing/scripts/common.py
|
| @@ -30,7 +30,12 @@ def run_script(argv, funcs):
|
| # TODO(phajdan.jr): Make build-config-fs required after passing it in recipe.
|
| parser.add_argument('--build-config-fs')
|
| parser.add_argument('--paths', type=parse_json, default={})
|
| + # Properties describe the environment of the build, and are the same per
|
| + # script invocation.
|
| parser.add_argument('--properties', type=parse_json, default={})
|
| + # Args contains per-invocation arguments that potentially change the
|
| + # behavior of the script.
|
| + parser.add_argument('--args', type=parse_json, default=[])
|
|
|
| subparsers = parser.add_subparsers()
|
|
|
|
|