Files
linux-kernel-module-cheat/baremetal/arch/aarch64/add.py
Ciro Santilli 六四事件 法轮功 e0dbe2416d gdb: create some automated tests with pytest
gem5 baremetal: use m5exit m5op in exit() so as to not force users to
apply a patch for almost all examples
2018-11-09 09:33:44 +00:00

8 lines
210 B
Python

def test(self):
self.sendline('tbreak main')
self.sendline('continue')
self.continue_to('op1')
assert self.get_int('$x0') == 1
self.continue_to('result')
assert self.get_int('$x1') == 3