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

Unified Diff: build/android/pylib/perf/test_runner.py

Issue 26484005: [Android] Remove --keep_test_server_ports as a mandorty option. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/perf/test_runner.py
diff --git a/build/android/pylib/perf/test_runner.py b/build/android/pylib/perf/test_runner.py
index c1ad07f7c55c005fd521d16f48c937de12ffcf02..10a8da2d4b4e24961820d176481df75a420e8719 100644
--- a/build/android/pylib/perf/test_runner.py
+++ b/build/android/pylib/perf/test_runner.py
@@ -37,16 +37,14 @@ be ignored:
]
Note that script_to_execute necessarily have to take at least the following
-options:
+option:
--device: the serial number to be passed to all adb commands.
- --keep_test_server_ports: indicates it's being run as a shard, and shouldn't
- reset test server port allocation.
"""
import datetime
import logging
-import pickle
import os
+import pickle
import sys
from pylib import constants
@@ -110,7 +108,7 @@ class TestRunner(base_test_runner.BaseTestRunner):
Returns:
A tuple containing (Output, base_test_result.ResultType)
"""
- cmd = ('%s --device %s --keep_test_server_ports' %
+ cmd = ('%s --device %s' %
(self._tests[test_name], self.device))
logging.info('%s : %s', test_name, cmd)
start_time = datetime.datetime.now()
« 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