unicorn/tests/regress/ensure_typedef_consts_generated.py

16 lines
400 B
Python
Raw Normal View History

#!/usr/bin/python
"""See https://github.com/unicorn-engine/unicorn/issues/161
Ensure that constants which are specified via a typedef, rather than an enum,
are included in the bindings by the script for autogenerating mappings for
constants.
"""
2015-10-03 07:22:41 +02:00
import unicorn
try:
unicorn.UC_HOOK_MEM_UNMAPPED
except AttributeError:
assert(False and "Definition for UC_HOOK_MEM_UNMAPPED not generated")