Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gdb6 / gdb / testsuite / gdb.objc / nondebug.exp
blob9c7a7443524b839b4cfbca03e21cec541184e931
1 # Copyright 2003 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.
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.
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 # This file tests decoding non-debuggable Objective-C symbols
19 # This file was written by Adam Fedor (fedor@gnu.org)
21 if $tracelevel then {
22 strace $tracelevel
25 set testfile "nondebug"
26 set srcfile ${testfile}.m
27 set binfile ${objdir}/${subdir}/${testfile}
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
33 if {[gdb_compile_objc "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list ] ] != "" } {
34 return -1
37 proc 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
46 set prms_id 0
47 set bug_id 0
49 # Start with a fresh gdb.
51 gdb_exit
52 gdb_start
53 gdb_reinitialize_dir $srcdir/$subdir
54 gdb_load $binfile
58 do_objc_tests
61 # Break on multiply defined non-debuggable symbol (PR objc/1236)
63 set name "break on non-debuggable method"
64 gdb_test_multiple "break someMethod" $name \
66 -re "\\\[0\\\] cancel\r\n\\\[1\\\] all\r\n\\\[2\\\]\[ \]+-.NonDebug someMethod.*\\\[3\\\]\[ \]+-.NonDebug2 someMethod.*" {
67 send_gdb "2\n"
68 exp_continue
70 -re "\\\[0\\\] cancel\r\n\\\[1\\\] all\r\n> " {
71 gdb_test "0" "" ""
72 kfail "gdb/1236" $name
74 -re "Breakpoint \[0-9\]+ at 0x\[0-9a-f\]+.*$gdb_prompt $" { pass $name }
75 -re ".*$gdb_prompt $" { kfail "gdb/1236" $name }