 Chromium Code Reviews
 Chromium Code Reviews Issue 2331993003:
  Updating isolate scripts to read in chartjson telemetry results  (Closed)
    
  
    Issue 2331993003:
  Updating isolate scripts to read in chartjson telemetry results  (Closed) 
  | Index: testing/scripts/run_gpu_integration_test_as_googletest.py | 
| diff --git a/testing/scripts/run_gpu_integration_test_as_googletest.py b/testing/scripts/run_gpu_integration_test_as_googletest.py | 
| index 20f46c6ae5b5557a47864c523778e7a8de99bac7..fd48e06cf36e76e43993ac311afc1ebc78cd1992 100755 | 
| --- a/testing/scripts/run_gpu_integration_test_as_googletest.py | 
| +++ b/testing/scripts/run_gpu_integration_test_as_googletest.py | 
| @@ -46,6 +46,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
It's not necessary to manually extract it -- addin
 
eyaich1
2016/09/20 12:52:02
Done.
 | 
| + | 
| xvfb_proc = None | 
| openbox_proc = None | 
| xcompmgr_proc = None |