Files
linux-kernel-module-cheat/userland/c/add.py
Ciro Santilli 六四事件 法轮功 fbfc4905ec baremetal: build userland programs using userland_and_baremetal instead of symlinks
Otherwise I'll go crazy with symlink action.
2019-05-23 00:00:01 +00:00

10 lines
268 B
Python

def test(self):
self.sendline('tbreak main')
self.sendline('continue')
self.continue_to('op1')
assert self.get_int('i') == 1
self.continue_to('op2')
assert self.get_int('j') == 2
self.continue_to('result')
assert self.get_int('k') == 3