2015-08-29 03:52:07 +03:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2015-08-28 20:31:27 +03:00
|
|
|
"""See https://github.com/unicorn-engine/unicorn/issues/65"""
|
|
|
|
|
|
|
|
import unicorn
|
2015-09-17 23:45:15 +03:00
|
|
|
import regress
|
2015-08-28 20:31:27 +03:00
|
|
|
|
2015-09-17 23:45:15 +03:00
|
|
|
class EmuStopSegFault(regress.RegressTest):
|
|
|
|
|
|
|
|
def runTest(self):
|
|
|
|
ADDR = 0x10101000
|
|
|
|
mu = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
|
|
|
|
mu.mem_map(ADDR, 1024 * 4)
|
|
|
|
mu.mem_write(ADDR, b'\x41')
|
|
|
|
mu.emu_start(ADDR, ADDR + 1, count=1)
|
|
|
|
# The following should not trigger a null pointer dereference
|
|
|
|
self.assertEqual(None, mu.emu_stop())
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
regress.main()
|