Switch the license of all .c files to GPLv3.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / sect-cmd.exp
CommitLineData
6aba47ca 1# Copyright 1997, 1998, 1999, 2003, 2007 Free Software Foundation, Inc.
c906108c
SS
2
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.
7#
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.
12#
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. */
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20if $tracelevel then {
21 strace $tracelevel
22 }
23
24global usestubs
25
26#
27# test running programs
28#
29set prms_id 0
30set bug_id 0
31
32# This test exists solely to exercise the "section" command for
33# code-coverage on HP-UX. (So far as I can tell, the "section"
34# command isn't needed on HP-UX, but probably is for embedded
35# apps.)
36#
37if ![istarget "hppa*-*-hpux*"] then {
38 return
39}
40
41set testfile "break"
42set srcfile ${testfile}.c
850742db 43set srcfile1 ${testfile}1.c
c906108c 44set binfile ${objdir}/${subdir}/${testfile}
850742db 45
fc91c6c2 46if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debug nowarnings}] != "" } {
b60f0898
JB
47 untested sect-cmd.exp
48 return -1
850742db
MC
49}
50
fc91c6c2 51if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug nowarnings}] != "" } {
b60f0898
JB
52 untested sect-cmd.exp
53 return -1
850742db
MC
54}
55
fc91c6c2 56if { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug nowarnings}] != "" } {
b60f0898
JB
57 untested sect-cmd.exp
58 return -1
c906108c
SS
59}
60
61gdb_exit
62gdb_start
63gdb_reinitialize_dir $srcdir/$subdir
64gdb_load ${binfile}
65
66if ![runto_main] then { fail "section command tests suppressed" }
67
68# Get the $CODE$ section's starting address.
69#
70# (Note that this works for PA32 programs, which use the SOM file
71# format. PA64 uses ELF, and when support for that is added, it's
72# not clear that there'll be a section named "$CODE$" in such
73# programs.)
74#
085dd6e6
JM
75
76set address1 ""
77set address2 ""
c906108c
SS
78send_gdb "info files\n"
79gdb_expect {
085dd6e6
JM
80 -re ".*(0x\[0-9a-fA-F\]*) - (0x\[0-9a-fA-F\]*) is .(CODE|text).*$gdb_prompt $"\
81 {pass "info files"
82 set address1 $expect_out(1,string)
83 set address2 $expect_out(2,string)}
c906108c
SS
84 -re "$gdb_prompt $"\
85 {fail "info files"}
86 timeout {fail "(timeout) info files"}
87}
88
89# Reset the section to that same starting address, which should be
90# harmless (i.e., we just want to exercise the section command).
91#
085dd6e6
JM
92if [istarget "hppa2.0w-*-*"] then {
93 send_gdb "section \.text $address1\n"
94 gdb_expect {
95 -re ".*$address1 \- $address2 is .text.*$gdb_prompt $"\
96 {pass "set section command"}
97 -re "$gdb_prompt $"\
98 {fail "set section command"}
99 timeout {fail "(timeout) set section command"}
100 }
101} else {
102 send_gdb "section \$CODE\$ $address1\n"
103 gdb_expect {
104 -re ".*$address1 \- $address2 is .CODE..*$gdb_prompt $"\
105 {pass "set section command"}
106 -re "$gdb_prompt $"\
107 {fail "set section command"}
108 timeout {fail "(timeout) set section command"}
109 }
c906108c
SS
110}
111
112# Verify that GDB responds gracefully to a non-existent section name.
113#
114send_gdb "section FOOBARBAZ 0x1234\n"
115gdb_expect {
116 -re "Section FOOBARBAZ not found\r\n$gdb_prompt $"\
117 {pass "non-existent section disallowed"}
118 -re "$gdb_prompt $"\
119 {fail "non-existent section disallowed"}
120 timeout {fail "(timeout) non-existent section disallowed"}
121}
122
123# We "happen to know" that GDB uses a fixed size character buffer to
124# parse the section name into, and the buffer is declared to be 100
125# characters in length. Verify that GDB gracefully handles section
126# names longer than that. (The section is also non-existent.)
127#
128send_gdb "section A234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123 0x1234\n"
129gdb_expect {
130 -re "Section A23456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 not found\r\n$gdb_prompt $"\
131 {pass "non-existent too-long section disallowed"}
132 -re "$gdb_prompt $"\
133 {fail "non-existent too-long section disallowed"}
134 timeout {fail "(timeout) non-existent too-long section disallowed"}
135}
136
137gdb_exit
138return 0
This page took 0.708984 seconds and 4 git commands to generate.