]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.objc/objcdecode.exp
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.objc / objcdecode.exp
CommitLineData
6aba47ca 1# Copyright 2003, 2007 Free Software Foundation, Inc.
526c61ee
AF
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# This file tests decoding of Objective-C symbols
18
19# This file was written by Adam Fedor (fedor@gnu.org)
20
21if $tracelevel then {
22 strace $tracelevel
23}
24
25set testfile "objcdecode"
26set srcfile ${testfile}.m
27set binfile ${objdir}/${subdir}/${testfile}
28
29#
30# Objective-C program compilation isn't standard. We need to figure out
31# which libraries to link in. Most of the time it uses pthread
32#
33if {[gdb_compile_objc "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug ]] != "" } {
34 return -1
35}
36
37proc do_objc_tests {} {
38 global prms_id
39 global bug_id
40 global subdir
41 global objdir
42 global srcdir
43 global binfile
44 global gdb_prompt
45
46 set prms_id 0
47 set bug_id 0
48
49 # Start with a fresh gdb.
50
51 gdb_exit
52 gdb_start
53 gdb_reinitialize_dir $srcdir/$subdir
54 gdb_load $binfile
55
56}
57
58do_objc_tests
59
60#
61# Break on multiply defined method (PR objc/1236)
62#
63set name "break on multiply defined method"
64gdb_test_multiple "break multipleDef" $name \
65{
13ae734a 66 -re "\\\[0\\\] cancel\r\n\\\[1\\\] all\r\n\\\[2\\\] -.Decode multipleDef. at .*\r\n\\\[3\\\] multipleDef at .*\r\n> $" {
526c61ee
AF
67 send_gdb "3\n"
68 exp_continue
69 }
13ae734a 70 -re "Breakpoint \[0-9\]+ at 0x\[0-9a-f\]+: file .*\r\n$gdb_prompt $" { pass $name }
526c61ee 71 -re ".*$gdb_prompt $" { kfail "gdb/1236" $name }
526c61ee
AF
72}
73
13ae734a
MC
74set name "continue after break on multiply defined symbol"
75gdb_test_multiple "run" $name \
76{
77 -re "Starting program.*Breakpoint \[0-9\]+, multipleDef \\\(\\\) at .*\r\n$gdb_prompt $" {
78 pass $name
79 }
80 -re "Starting program.*\\\[0\\\] cancel\r\n\\\[1\\\] all\r\n\\\[2\\\] -.Decode multipleDef. at .*\r\n\\\[3\\\] multipleDef at .*\r\n> $" {
81 send_gdb "0\n"
82 kfail "gdb/1238" $name
83 # gdb is in a bad state here.
84 # It would be difficult to do any more tests after this.
85 }
86}