• 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 
11 from autotest_lib.client.common_lib.base_utils import *
12 from autotest_lib.client.common_lib.lsbrelease_utils import *
13 if os.path.exists(os.path.join(os.path.dirname(__file__), 'site_utils.py')):
14     from autotest_lib.client.common_lib.site_utils import *
15