ftmemsim-valgrind/gdbserver_tests/mcclean_after_fork.stdinB.gdb
Julian Seward 2ee9e90486 Implement a GDB server in Valgrind. See #214909.
(Philippe Waroquiers, philippe.waroquiers@skynet.be)



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11727
2011-05-06 21:02:55 +00:00

25 lines
696 B
Plaintext

# connect gdb to Valgrind gdbserver:
target remote | ./vgdb --wait=60 --vgdb-prefix=./vgdb-prefix-mcclean_after_fork
monitor vg.set vgdb-error 999999
#
# put a break in main, and then a watch
# also put breaks in code that only the child will execute.
# These breaks should not be encountered.
break clean_after_fork.c:9
break clean_after_fork.c:18
break clean_after_fork.c:20
#
continue
# first break encountered.
# put a read watchpoint on mem
# we expect that the read watchpoint is not triggered in the child
# (as we expect it will be cleared at fork).
rwatch mem
#
continue
#
# we should now have encountered the read watchpoint in the parent.
# let's kill the parent:
monitor vg.kill
quit