Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/test_decompilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ def test_ghidra_types(self):
assert type_name == "off_t"
assert "typedef" not in func.header.args[1].type

# grab the size of a type that is used as an arg in function '_init'
func = deci.functions[0x1120]
arg0 = func.header.args[0]
assert arg0.size == 8, "Unexpected arg size for _init arg0, it is a pointer!"

def test_ghidra_artifact_dependency_resolving(self):
with tempfile.TemporaryDirectory() as temp_dir:
proj_name = "fdupes_ghidra"
Expand Down