old-cross-binutils/gdb/testsuite/gdb.base/chng-syms.c
Paul N. Hilfinger d8679d841d New test to check that GDB does not crash due to memory corruption
when a reload caused by a change in an executable invalidates
a breakpoint condition.
2004-01-29 11:15:44 +00:00

22 lines
295 B
C

/*
* Test that GDB cleans up properly after errors that result when a
* breakpoint is reset.
*/
/* VARIABLE is a macro defined on the compiler command line. */
#include <stdlib.h>
int VARIABLE = 42;
void stop_here ()
{
VARIABLE *= 2;
}
int main ()
{
stop_here ();
exit (0);
}