Exemple #1
0
def test_get_path_from_module_faked(monkeypatch):
    for line in test_module_lines:
        def fake_module(*args):
            return line
        monkeypatch.setattr(spack.util.module_cmd, 'module', fake_module)

        path = path_from_modules(['mod'])
        assert path == '/path/to'
Exemple #2
0
def get_rpaths(pkg):
    """Get a list of all the rpaths for a package."""
    rpaths = [pkg.prefix.lib, pkg.prefix.lib64]
    deps = get_rpath_deps(pkg)
    rpaths.extend(d.prefix.lib for d in deps if os.path.isdir(d.prefix.lib))
    rpaths.extend(d.prefix.lib64 for d in deps
                  if os.path.isdir(d.prefix.lib64))
    # Second module is our compiler mod name. We use that to get rpaths from
    # module show output.
    if pkg.compiler.modules and len(pkg.compiler.modules) > 1:
        rpaths.append(path_from_modules([pkg.compiler.modules[1]]))
    return list(dedupe(filter_system_paths(rpaths)))