• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 """
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.
9 """
10 import os
11 
12 from autotest_lib.client.common_lib.utils import *
13 from autotest_lib.client.bin.base_utils import *
14 if os.path.exists(os.path.join(os.path.dirname(__file__), 'site_utils.py')):
15     from autotest_lib.client.bin.site_utils import *
16