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

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

Issue 1314313004: [Android][telemetry] Update pylib imports for modules that moved into devil. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 logging 5 import logging
6 6
7 from devil.android import device_errors
7 from pylib import valgrind_tools 8 from pylib import valgrind_tools
8 from pylib.base import base_test_result 9 from pylib.base import base_test_result
9 from pylib.base import test_run 10 from pylib.base import test_run
10 from pylib.base import test_collection 11 from pylib.base import test_collection
11 from pylib.device import device_errors
12 12
13 13
14 class LocalDeviceTestRun(test_run.TestRun): 14 class LocalDeviceTestRun(test_run.TestRun):
15 15
16 def __init__(self, env, test_instance): 16 def __init__(self, env, test_instance):
17 super(LocalDeviceTestRun, self).__init__(env, test_instance) 17 super(LocalDeviceTestRun, self).__init__(env, test_instance)
18 self._tools = {} 18 self._tools = {}
19 19
20 #override 20 #override
21 def RunTests(self): 21 def RunTests(self):
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 return test 113 return test
114 114
115 def _GetTests(self): 115 def _GetTests(self):
116 raise NotImplementedError 116 raise NotImplementedError
117 117
118 def _RunTest(self, device, test): 118 def _RunTest(self, device, test):
119 raise NotImplementedError 119 raise NotImplementedError
120 120
121 def _ShouldShard(self): 121 def _ShouldShard(self):
122 raise NotImplementedError 122 raise NotImplementedError
OLDNEW
« no previous file with comments | « build/android/pylib/local/device/local_device_instrumentation_test_run.py ('k') | build/android/pylib/monkey/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698