Sign in
android
/
toolchain
/
rr
/
eda23a1c9cf89d22b15d838fdf46042b51a3e4ca
/
.
/
src
/
test
/
reverse_continue_process_signal.py
blob: 8694224ffb6427cbcadebf6d97da6724239c91e3 [
file
] [
log
] [
blame
]
from
util
import
*
send_gdb
(
'handle SIGKILL stop'
)
send_gdb
(
'c'
)
expect_gdb
(
'SIGKILL'
)
send_gdb
(
'reverse-continue'
)
expect_gdb
(
'stopped'
)
ok
()