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.
12 lines
309 B
Python
12 lines
309 B
Python
from __future__ import annotations
|
|
|
|
from pwndbg.lib.arch import PWNDBG_SUPPORTED_ARCHITECTURES
|
|
from pwndbg.lib.regs import reg_sets
|
|
|
|
|
|
def test_reg_set_mappings_exist():
|
|
arch_set: set[str] = set(PWNDBG_SUPPORTED_ARCHITECTURES)
|
|
reg_sets_keys = set(reg_sets.keys())
|
|
|
|
assert arch_set == reg_sets_keys
|