Files
linux-kernel-module-cheat/baremetal/arch/arm/regs.py
Ciro Santilli 六四事件 法轮功 e54635c3ab make gdb test automation even awesomer
2018-11-13 00:00:01 +00:00

9 lines
238 B
Python

def test(self):
self.sendline('tbreak main')
self.sendline('continue')
self.continue_to('r0')
self.sendline('set $r0 = 3')
self.continue_to('r1')
assert self.get_int('$r0') == 3
assert self.get_int('$r1') == 2