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