old-cross-binutils/gdb/testsuite/gdb.base/huge.c
Michael Snyder 21b9b5b1ca 2002-01-07 Michael Snyder <msnyder@redhat.com>
* gdb.base/huge.exp: New test.  Print a very large target data object.
	(skip_huge_test): New test variable.  Define if you want to skip this
	test.  The test reads an 8 megabyte data object from the target, so it
	might be very time consuming on remote targets with a slow connection.
	* gdb.base/huge.c: New file.  Test case for above.
2002-01-08 01:00:10 +00:00

19 lines
370 B
C

/*
* Test GDB's ability to read a very large data object from target memory.
*/
/*
* A value that will produce a target data object
* large enough to crash GDB. 0x200000 is big enough
* on Linux, other systems may need a larger number.
*/
#define CRASH_GDB 0x200000
static int a[CRASH_GDB], b[CRASH_GDB];
main()
{
memcpy (a, b, sizeof (a));
return 0;
}