Skip to content
Snippets Groups Projects
Commit eb7a4e10 authored by Tamara Dahlgren's avatar Tamara Dahlgren Committed by Todd Gamblin
Browse files

Fixes #14402 (#14483)

Check if patchelf is executable, not binary, in case a site is wrapping it.
parent 5afc407f
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ def test_file_is_relocatable(source_file, is_relocatable):
)
def test_patchelf_is_relocatable():
patchelf = spack.relocate.get_patchelf()
assert spack.relocate.is_binary(patchelf)
assert llnl.util.filesystem.is_exe(patchelf)
assert spack.relocate.file_is_relocatable(patchelf)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment