xref: /aosp_15_r20/external/autotest/server/utils.py (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1"""
2Convenience functions for use by tests or whomever.
3
4NOTE: this is a mixin library that pulls in functions from several places
5Note carefully what the precendece order is
6
7There's no really good way to do this, as this isn't a class we can do
8inheritance with, just a collection of static methods.
9"""
10
11from autotest_lib.client.common_lib.utils import *
12from autotest_lib.server.base_utils import *
13if os.path.exists(os.path.join(os.path.dirname(__file__), 'site_utils.py')):
14    from autotest_lib.server.site_utils import *
15