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

Unified Diff: content/test/gpu/run_unittests.py

Issue 1361523003: Add crash_service to Telemetry's isolates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fck
Patch Set: Created 5 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
« no previous file with comments | « content/test/gpu/run_gpu_test.py ('k') | tools/perf/core/binary_dependencies.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/run_unittests.py
diff --git a/content/test/gpu/run_unittests.py b/content/test/gpu/run_unittests.py
index 11eb5143f4380667ae884a5ff8da0e062c480ae4..f74b1ead3f346ca4dc1505db92c4814eb5ca6806 100755
--- a/content/test/gpu/run_unittests.py
+++ b/content/test/gpu/run_unittests.py
@@ -24,7 +24,11 @@ if __name__ == '__main__':
else:
env['PYTHONPATH'] = telemetry_dir
- path_to_run_tests = os.path.join(telemetry_dir, 'telemetry', 'testing',
- 'run_tests.py')
- argv = ['--no-browser', '--top-level-dir', gpu_test_dir] + sys.argv[1:]
+ path_to_run_tests = os.path.realpath(os.path.join(
+ telemetry_dir, 'telemetry', 'testing', 'run_tests.py'))
+ client_config = os.path.realpath(os.path.join(
+ gpu_test_dir, os.pardir, os.pardir, os.pardir, 'tools', 'perf',
+ 'core', 'binary_dependencies.json'))
+ argv = ['--no-browser', '--top-level-dir', gpu_test_dir,
+ '--client-config', client_config] + sys.argv[1:]
sys.exit(subprocess.call([sys.executable, path_to_run_tests] + argv, env=env))
« no previous file with comments | « content/test/gpu/run_gpu_test.py ('k') | tools/perf/core/binary_dependencies.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698