Best Python code snippet using autotest_python
os_dep.py
Source:os_dep.py  
...328            self._add_dir(d)329        self.parse_conf(ld_so_conf_filename)330        # only return the paths331        return (ld.path for ld in self.lddirs)332def generate_library_search_paths(lib, extra_dirs=COMMON_LIB_PATHS, ld_so_conf_filename=Ldconfig.LD_SO_CONF):333    """334    Generate full paths of potential locations of a given library file based on335    COMMON_LIB_PATHS.336    :param lib: library filename to join with all search directories337    :type lib: str338    :param extra_dirs: extra directories to append to the directory search list339    :type extra_dirs: iterable340    :param ld_so_conf_filename: location of /etc/ld.so.conf to parse to find all system library locations341    :type ld_so_conf_filename: str342    :return: iterator over all generated paths343    :rtype: iterable344    """345    if os.sep in lib:346        # is program already contains path then only check that path...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
