test repeat db

This commit is contained in:
Peter McGoron 2023-02-25 21:07:23 +00:00
parent 09d636c02c
commit f2d0630f20
1 changed files with 11 additions and 0 deletions

View File

@ -448,6 +448,17 @@ class DataTest(unittest.TestCase):
self.assertEqual(ex(), ffi.RunRet.STOP)
self.assertEqual(ex.getdat(0), [1,2,3,4])
self.assertEqual(ex.getdat(1), [0x10,0x11,0x12,0x13])
def test_alloc_repeat(self):
p = Program()
p.parse_lines([
"db d0 [1,2,3,4]",
"db d1 [10,11,12,13]",
"db d0 [5,6,7,8,9]"
])
ex = ffi.Environment(p())
self.assertEqual(ex(), ffi.RunRet.STOP)
self.assertEqual(ex.getdat(0), [5,6,7,8,9])
self.assertEqual(ex.getdat(1), [0x10,0x11,0x12,0x13])
class SCEnv(ffi.Environment):
def syscall(self, s):