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

Unified Diff: sky/tools/test_perf

Issue 746373002: Convert sky_server over to a go-based http server. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: no check in binary Created 6 years 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: sky/tools/test_perf
diff --git a/sky/tools/test_perf b/sky/tools/test_perf
index e4e367de0f2571f1ddad3fd9431b810deb762e1f..8b61767fe3f76864f2b8b491d91bff41fee8b4e4 100755
--- a/sky/tools/test_perf
+++ b/sky/tools/test_perf
@@ -69,8 +69,10 @@ class PerfHarness(object):
self.args = args
def _start_server(self):
+ subprocess.call(os.path.join(self.paths.sky_tools_directory,
+ 'download_sky_server'))
return subprocess.Popen([
- os.path.join(self.paths.sky_tools_directory, 'sky_server'),
+ os.path.join(self.paths.src_root, 'out', 'downloads', 'sky_server'),
self.paths.src_root,
str(HTTP_PORT),
'-t', self.args.configuration

Powered by Google App Engine
This is Rietveld 408576698