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.
pwndbg/tests/unit-tests/mocks/gdb.py

15 lines
225 B
Python

import sys
from unittest.mock import MagicMock
module_name = "gdb"
module = MagicMock()
sys.modules[module_name] = module
import gdb
gdb.PARAM_BOOLEAN = 0
gdb.PARAM_ZINTEGER = 4
gdb.PARAM_STRING = 8
gdb.VERSION = "8.3.1"