1 # Copyright 2007, 2008, 2009 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 # Test GDB's internal buffers safety for the GCORE command.
26 set testfile "gcore-buffer-overflow"
27 set srcfile ${testfile}.c
28 # The ${binfile} basename needs to exceed 80 characters (`sizeof (psargs)')
29 # plus some additional data to overwrite the stack frame.
30 set pattern 01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
31 set binfile ${objdir}/${subdir}/${testfile}-${pattern}
33 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
38 # Start with a fresh gdb.
42 gdb_reinitialize_dir $srcdir/$subdir
45 # Does this gdb support gcore?
46 send_gdb "help gcore\n"
48 -re "Undefined command: .gcore.*$gdb_prompt $" {
49 # gcore command not supported -- nothing to test here.
50 unsupported "gdb does not support gcore on this target"
53 -re "Save a core file .*$gdb_prompt $" {
56 -re ".*$gdb_prompt $" {
60 fail "help gcore (timeout)"
64 gdb_test "set args ${pattern}" \
66 "Set buffer exceeding arguments"
68 if { ! [ runto_main ] } then {
69 untested gcore-buffer-overflow.exp
73 set escapedfilename [string_to_regexp ${objdir}/${subdir}/gcore-buffer-overflow.test]
75 set test "save a corefile"
76 gdb_test_multiple "gcore ${objdir}/${subdir}/gcore-buffer-overflow.test" $test {
77 -re "Saved corefile ${escapedfilename}\[\r\n\]+$gdb_prompt $" {
80 -re "Can't create a corefile\[\r\n\]+$gdb_prompt $" {