How to use the archr.utils.lib_dependencies function in archr

To help you get started, we’ve selected a few archr examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github angr / archr / tests / test_util.py View on Github external
def test_deps():
    assert sorted(archr.utils.lib_dependencies("/bin/false")) == [ "/lib/x86_64-linux-gnu/libc.so.6", "/lib64/ld-linux-x86-64.so.2" ]
github angr / archr / tests / test_utils.py View on Github external
def test_deps():
    assert sorted(archr.utils.lib_dependencies("/bin/false")) == [ "/lib/x86_64-linux-gnu/libc.so.6", "/lib64/ld-linux-x86-64.so.2" ]