mbligh | dc735a2 | 2007-08-02 16:54:37 +0000 | [diff] [blame] | 1 | """ |
mbligh | e7dc9d3 | 2009-01-21 19:24:38 +0000 | [diff] [blame] | 2 | Convenience functions for use by tests or whomever. |
| 3 | |
| 4 | NOTE: this is a mixin library that pulls in functions from several places |
| 5 | Note carefully what the precendece order is |
| 6 | |
| 7 | There's no really good way to do this, as this isn't a class we can do |
| 8 | inheritance with, just a collection of static methods. |
mbligh | dcd57a8 | 2007-07-11 23:06:47 +0000 | [diff] [blame] | 9 | """ |
| 10 | |
mbligh | e7dc9d3 | 2009-01-21 19:24:38 +0000 | [diff] [blame] | 11 | from autotest_lib.client.common_lib.utils import * |
| 12 | from autotest_lib.server.base_utils import * |
mbligh | 798f952 | 2009-07-02 19:03:01 +0000 | [diff] [blame] | 13 | if os.path.exists(os.path.join(os.path.dirname(__file__), 'site_utils.py')): |
| 14 | from autotest_lib.server.site_utils import * |