mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
9 lines
238 B
Python
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
|