def __init__(self): # disable logging of timestamp self._root_path = android_build.GetTop() logger.SetTimestampLogging(False) self._adb = None self._known_tests = None self._options = None self._test_args = None self._tests_to_run = None
def __init__(self): # disable logging of timestamp self._root_path = android_build.GetTop() out_base_name = os.path.basename(android_build.GetOutDir()) # regular expression to find remote device path from a file path relative # to build root pattern = r'' + out_base_name + r'\/target\/product\/\w+\/(.+)$' self._re_make_install_path = re.compile(pattern) logger.SetTimestampLogging(False) self._adb = None self._known_tests = None self._options = None self._test_args = None self._tests_to_run = None
def __init__(self): # disable logging of timestamp logger.SetTimestampLogging(False)