mirror of
https://github.com/angr/angr
synced 2026-08-17 12:23:11 -04:00
* Enable ruff isort rule * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
31 lines
958 B
Python
Executable file
31 lines
958 B
Python
Executable file
#!/usr/bin/env python3
|
|
# pylint: disable=missing-class-docstring,no-self-use,line-too-long
|
|
from __future__ import annotations
|
|
|
|
__package__ = __package__ or "tests.analyses" # pylint:disable=redefined-builtin
|
|
|
|
import os
|
|
import unittest
|
|
|
|
import angr
|
|
from tests.common import bin_location
|
|
|
|
test_location = os.path.join(bin_location, "tests")
|
|
|
|
|
|
class TestVtable(unittest.TestCase):
|
|
def test_vtable_extraction_x86_64(self):
|
|
p = angr.Project(os.path.join(test_location, "x86_64", "cpp_classes"), auto_load_libs=False)
|
|
vtables_sizes = {0x403CB0: 24, 0x403CD8: 16, 0x403CF8: 16, 0x403D18: 16}
|
|
vtable_analysis = p.analyses.VtableFinder()
|
|
vtables = vtable_analysis.vtables_list
|
|
|
|
assert len(vtables) == 4
|
|
|
|
for vtable in vtables:
|
|
assert vtable.vaddr in [0x403CB0, 0x403CD8, 0x403CF8, 0x403D18]
|
|
assert vtables_sizes[vtable.vaddr] == vtable.size
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|