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

Unified Diff: tools/chrome_proxy/run_tests

Issue 741823003: Fix regression in chrome_proxy tests caused by switching to typ. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/chrome_proxy/run_tests
diff --git a/tools/chrome_proxy/run_tests b/tools/chrome_proxy/run_tests
index 48f9615cd2140795cd855f846084eecd95fa4164..11780b1aa2913c52afc642bfde75f16281213dd7 100755
--- a/tools/chrome_proxy/run_tests
+++ b/tools/chrome_proxy/run_tests
@@ -15,6 +15,7 @@ import sys
if __name__ == '__main__':
proxy_dir = os.path.dirname(os.path.realpath(__file__))
+ perf_dir = os.path.realpath(os.path.join(proxy_dir, '..', 'perf'))
telemetry_dir = os.path.realpath(os.path.join(proxy_dir, '..', 'telemetry'))
env = os.environ.copy()
@@ -25,5 +26,5 @@ if __name__ == '__main__':
path_to_run_tests = os.path.join(telemetry_dir, 'telemetry', 'unittest_util',
'run_tests.py')
- argv = ['--top-level-dir', proxy_dir] + sys.argv[1:]
+ argv = ['--top-level-dir', proxy_dir, '--path', perf_dir] + sys.argv[1:]
sys.exit(subprocess.call([sys.executable, path_to_run_tests] + argv, env=env))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698