Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(716)

Unified Diff: testing/scripts/run_gpu_integration_test_as_googletest.py

Issue 2331993003: Updating isolate scripts to read in chartjson telemetry results (Closed)
Patch Set: Removing unwanted code Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « no previous file | testing/scripts/run_telemetry_as_googletest.py » ('j') | testing/scripts/run_telemetry_as_googletest.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698