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.
10 lines
297 B
Python
10 lines
297 B
Python
from __future__ import annotations
|
|
|
|
from pwndbg.aglib.arch import registered_architectures
|
|
from pwndbg.lib.arch import PWNDBG_SUPPORTED_ARCHITECTURES
|
|
|
|
|
|
def test_all_pwndbg_architectures_are_defined():
|
|
for arch in PWNDBG_SUPPORTED_ARCHITECTURES:
|
|
assert arch in registered_architectures
|