mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
407 B
Python
18 lines
407 B
Python
from __future__ import annotations
|
|
|
|
import gdb
|
|
|
|
import pwndbg.aglib.regs
|
|
import tests
|
|
|
|
REFERENCE_BINARY = tests.binaries.get("reference-binary.out")
|
|
|
|
|
|
def test_command_distance(start_binary):
|
|
start_binary(REFERENCE_BINARY)
|
|
|
|
rsp = pwndbg.aglib.regs.rsp
|
|
result = gdb.execute("distance $rsp $rsp+0x10", to_string=True)
|
|
|
|
assert result == f"{rsp:#x}->{rsp + 0x10:#x} is 0x10 bytes (0x2 words)\n"
|