Regression test for issue #165

This commit is contained in:
Sean Heelan 2015-10-06 12:55:09 +07:00
parent 9410b8fbe7
commit bb4011efe2

13
tests/regress/hook_add_crash.py Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python
"""https://github.com/unicorn-engine/unicorn/issues/165"""
import unicorn
def hook_mem_read_unmapped(mu, access, address, size, value, user_data):
pass
mu = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
for x in range(0, 1000):
mu.hook_add(unicorn.UC_HOOK_MEM_READ_UNMAPPED, hook_mem_read_unmapped, None)