unicorn/tests/regress/mov_gs_eax.py

25 lines
614 B
Python
Raw Normal View History

2016-02-05 02:35:17 +01:00
#!/usr/bin/python
from unicorn import *
from unicorn.x86_const import *
import regress
class VldrPcInsn(regress.RegressTest):
def runTest(self):
uc = Uc(UC_ARCH_X86, UC_MODE_32)
uc.mem_map(0x1000, 0x1000)
# mov gs, eax; mov eax, 1
code = '8ee8b801000000'.decode('hex')
uc.mem_write(0x1000, code)
uc.reg_write(UC_X86_REG_EAX, 0xFFFFFFFF)
with self.assertRaises(UcError) as ex_ctx:
2016-07-04 07:57:48 +02:00
uc.emu_start(0x1000, 0x1000 + len(code))
2016-07-05 18:10:39 +02:00
self.assertEquals(ex_ctx.exception.errno, UC_ERR_EXCEPTION)
2016-02-05 02:35:17 +01:00
if __name__ == '__main__':
regress.main()