Sign in
android
/
toolchain
/
rr
/
eda23a1c9cf89d22b15d838fdf46042b51a3e4ca
/
.
/
src
/
test
/
siginfo.py
blob: 88aaf849d89724018e2a13118ea49cebadc198d0 [
file
] [
log
] [
blame
]
from
util
import
*
import
re
send_gdb
(
'c'
)
expect_gdb
(
'SIGUSR1'
)
send_gdb
(
'print $_siginfo'
)
expect_gdb
(
'si_signo = 10'
)
expect_gdb
(
'si_code = -6'
)
ok
()