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

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

Issue 2012323002: [Android] Implement perf tests to platform mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: johns comments Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 fnmatch 5 import fnmatch
6 import functools 6 import functools
7 import imp 7 import imp
8 import logging 8 import logging
9 import signal 9 import signal
10 import thread 10 import thread
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 return True 215 return True
216 216
217 def _GetTests(self): 217 def _GetTests(self):
218 raise NotImplementedError 218 raise NotImplementedError
219 219
220 def _RunTest(self, device, test): 220 def _RunTest(self, device, test):
221 raise NotImplementedError 221 raise NotImplementedError
222 222
223 def _ShouldShard(self): 223 def _ShouldShard(self):
224 raise NotImplementedError 224 raise NotImplementedError
225
226
227 class NoTestsError(Exception):
228 """Error for when no tests are found."""
OLDNEW
« no previous file with comments | « build/android/pylib/local/device/local_device_perf_test_run.py ('k') | build/android/pylib/perf/perf_test_instance.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698