added memmap regression scripts

This commit is contained in:
Yan
2015-08-23 13:03:48 -07:00
parent 761fd3d13b
commit a45d72ed7f
3 changed files with 45 additions and 0 deletions

8
regress/memmap_assert.py Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
import unicorn
u = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
u.mem_map(0x2000, 0)
u.mem_map(0x4000, 1)
print "I am never reached"