Sign in
android
/
toolchain
/
rr
/
eda23a1c9cf89d22b15d838fdf46042b51a3e4ca
/
.
/
src
/
test
/
watchpoint_at_sched.py
blob: 6c1bde0d627f060d73989111ea293d9ef17db3f3 [
file
] [
log
] [
blame
]
from
util
import
*
send_gdb
(
'handle SIGKILL stop'
)
send_gdb
(
'c'
)
expect_gdb
(
'SIGKILL'
)
send_gdb
(
'watch -l x'
)
expect_gdb
(
'Hardware[()/a-z ]+watchpoint 1'
)
send_gdb
(
'rc'
)
expect_gdb
(
'watchpoint 1'
)
expect_gdb
(
'New value = 1564779003'
)
ok
()