Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 193 return test | 193 return test |
| 194 | 194 |
| 195 def _GetTests(self): | 195 def _GetTests(self): |
| 196 raise NotImplementedError | 196 raise NotImplementedError |
| 197 | 197 |
| 198 def _RunTest(self, device, test): | 198 def _RunTest(self, device, test): |
| 199 raise NotImplementedError | 199 raise NotImplementedError |
| 200 | 200 |
| 201 def _ShouldShard(self): | 201 def _ShouldShard(self): |
| 202 raise NotImplementedError | 202 raise NotImplementedError |
| 203 | |
|
jbudorick
2016/07/01 14:20:10
+1 line
rnephew (Reviews Here)
2016/07/01 22:09:32
Done.
| |
| 204 class NoTestsError(Exception): | |
| 205 """Error for when no tests are found.""" | |
| OLD | NEW |