Files
linux-kernel-module-cheat/baremetal/arch/aarch64/regs.py
Ciro Santilli 六四事件 法轮功 d697640584 add more gdb tests
2018-11-09 00:00:02 +00:00

11 lines
307 B
Python

def test(self):
self.sendline('tbreak main')
self.sendline('continue')
self.continue_to('x1')
self.sendline('set $x30 = 3')
self.continue_to('x29')
assert self.get_int('$x29') == 1
assert self.get_int('$x30') == 3
self.continue_to('x30')
assert self.get_int('$x30') == 2