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
This commit is contained in:
@@ -1,35 +1,38 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import unicorn
|
||||
from unicorn import *
|
||||
|
||||
import regress
|
||||
|
||||
class MmapSeg(regress.RegressTest):
|
||||
from unicorn import *
|
||||
from unicorn.x86_const import *
|
||||
|
||||
def test_seg1(self):
|
||||
u = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
|
||||
|
||||
class MmapSeg1(regress.RegressTest):
|
||||
def runTest(self):
|
||||
u = Uc(UC_ARCH_X86, UC_MODE_32)
|
||||
u.mem_map(0x2000, 0x1000)
|
||||
u.mem_read(0x2000, 1)
|
||||
|
||||
for i in range(50):
|
||||
u = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
|
||||
u.mem_map(i*0x1000, 0x1000)
|
||||
u.mem_read(i*0x1000, 1)
|
||||
u = Uc(UC_ARCH_X86, UC_MODE_32)
|
||||
u.mem_map(i * 0x1000, 0x1000)
|
||||
u.mem_read(i * 0x1000, 1)
|
||||
|
||||
for i in range(20):
|
||||
with self.assertRaises(UcError):
|
||||
u = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
|
||||
u.mem_map(i*0x1000, 5)
|
||||
u.mem_read(i*0x1000, 1)
|
||||
u = Uc(UC_ARCH_X86, UC_MODE_32)
|
||||
u.mem_map(i * 0x1000, 5)
|
||||
u.mem_read(i * 0x1000, 1)
|
||||
|
||||
def test_seg2(self):
|
||||
|
||||
class MmapSeg2(regress.RegressTest):
|
||||
def runTest(self):
|
||||
uc = Uc(UC_ARCH_X86, UC_MODE_32)
|
||||
uc.mem_map(0x0000, 0x2000)
|
||||
uc.mem_map(0x2000, 0x4000)
|
||||
uc.mem_write(0x1000, 0x1004 * ' ')
|
||||
self.assertTrue(1,
|
||||
'If not reached, then we have BUG (crash on x86_64 Linux).')
|
||||
uc.mem_write(0x1000, b' ' * 0x1004)
|
||||
|
||||
self.assertTrue(True, 'If not reached, then we have BUG (crash on x86_64 Linux).')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
regress.main()
|
||||
|
||||
Reference in New Issue
Block a user