| # Copyright 2014 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| """An execution of a particular test on a particular device. |
| This is expected to handle all logic that is specific to the combination of |
| environment and test type. |
| - local instrumentation tests |
| def __init__(self, env, test_instance): |
| self._test_instance = test_instance |
| # Some subclasses have different teardown behavior on receiving SIGTERM. |
| self._received_sigterm = False |
| raise NotImplementedError |
| raise NotImplementedError |
| def RunTests(self, results): |
| """Runs Tests and populates |results|. |
| results: An array that should be populated with |
| |base_test_result.TestRunResults| objects. |
| raise NotImplementedError |
| raise NotImplementedError |
| def __exit__(self, exc_type, exc_val, exc_tb): |
| def ReceivedSigterm(self): |
| self._received_sigterm = True |