Files
linux-kernel-module-cheat/userland/arch/aarch64/gdb_tests/integer_registers.py
Ciro Santilli 六四事件 法轮功 12005528ef gdb: move all tests to userland
2019-05-26 00:00:01 +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