Files
unicorn/tests/regress/x86_fldt_fsqrt.py
Eli 9f578946d5 Revamp Python regression tests suite (#2022)
* Fix Python regression test suite (partial)

* Fix Python regression test suite

* Add a test for mapping at high addresses

* Add ctl tests
2024-10-13 13:14:10 +08:00

35 lines
690 B
Python
Executable File

#!/usr/bin/env python
import regress
from unicorn import *
from unicorn.x86_const import *
CODE = (
b'\xb8\x00\x00\x00\x02' # mov eax, 0x2000000
b'\xdb\x28' # fldt [eax]
b'\xd9\xfa' # fsqrt
)
BASE = 0x1000000
DATA_ADDR = 0x2000000
DATA = b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01'
class FldtFsqrt(regress.RegressTest):
def test_fldt_fsqrt(self):
uc = Uc(UC_ARCH_X86, UC_MODE_32)
uc.mem_map(BASE, 0x1000)
uc.mem_write(BASE, CODE)
uc.mem_map(DATA_ADDR, 0x1000)
uc.mem_write(DATA_ADDR, DATA)
uc.emu_start(BASE, BASE + len(CODE), 10000, 10)
if __name__ == '__main__':
regress.main()