Chromium Code Reviews| Index: testing/scripts/run_telemetry_as_googletest.py |
| diff --git a/testing/scripts/run_telemetry_as_googletest.py b/testing/scripts/run_telemetry_as_googletest.py |
| index f7bdcc00c0880554c17ba6de8a7383af11ec8065..82491845dc6273f5cfd88b806b7eccb104583fae 100755 |
| --- a/testing/scripts/run_telemetry_as_googletest.py |
| +++ b/testing/scripts/run_telemetry_as_googletest.py |
| @@ -39,6 +39,15 @@ def main(): |
| required=True) |
| parser.add_argument('--xvfb', help='Start xvfb.', action='store_true') |
| args, rest_args = parser.parse_known_args() |
| + # Remove the chartjson extra arg until this script cares about chartjson |
| + # results from telemetry |
| + index = 0 |
| + for arg in rest_args: |
| + if '--isolated-script-test-chartjson-output' in arg: |
| + rest_args.pop(index) |
| + break |
| + index += 1 |
|
Ken Russell (switch to Gerrit)
2016/09/19 20:27:57
Same here.
eyaich1
2016/09/20 12:52:02
Done.
|
| + |
| xvfb_proc = None |
| openbox_proc = None |
| xcompmgr_proc = None |