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

Side by Side Diff: build/android/pylib/local/device/local_device_instrumentation_test_run.py

Issue 1526183002: Revert of [Android] Add ChromiumNetTestSupport.apk for the java EmbeddedTestServer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import logging 5 import logging
6 import re 6 import re
7 import time 7 import time
8 8
9 from devil.android import device_errors 9 from devil.android import device_errors
10 from pylib import flag_changer 10 from pylib import flag_changer
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 display_name = self._GetTestName(test) 130 display_name = self._GetTestName(test)
131 flags = test['flags'] 131 flags = test['flags']
132 if flags.add: 132 if flags.add:
133 display_name = '%s with {%s}' % (display_name, ' '.join(flags.add)) 133 display_name = '%s with {%s}' % (display_name, ' '.join(flags.add))
134 if flags.remove: 134 if flags.remove:
135 display_name = '%s without {%s}' % (display_name, ' '.join(flags.remove)) 135 display_name = '%s without {%s}' % (display_name, ' '.join(flags.remove))
136 return display_name 136 return display_name
137 137
138 #override 138 #override
139 def _RunTest(self, device, test): 139 def _RunTest(self, device, test):
140 extras = {} 140 extras = self._test_instance.GetHttpServerEnvironmentVars()
141 141
142 flags = None 142 flags = None
143 test_timeout_scale = None 143 test_timeout_scale = None
144 if isinstance(test, list): 144 if isinstance(test, list):
145 if not self._test_instance.driver_apk: 145 if not self._test_instance.driver_apk:
146 raise Exception('driver_apk does not exist. ' 146 raise Exception('driver_apk does not exist. '
147 'Please build it and try again.') 147 'Please build it and try again.')
148 148
149 def name_and_timeout(t): 149 def name_and_timeout(t):
150 n = self._GetTestName(t) 150 n = self._GetTestName(t)
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 timeout = v 241 timeout = v
242 break 242 break
243 else: 243 else:
244 logging.warning('Using default 1 minute timeout for %s', test_name) 244 logging.warning('Using default 1 minute timeout for %s', test_name)
245 timeout = 60 245 timeout = 60
246 246
247 timeout *= cls._GetTimeoutScaleFromAnnotations(annotations) 247 timeout *= cls._GetTimeoutScaleFromAnnotations(annotations)
248 248
249 return timeout 249 return timeout
250 250
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698