run copyright.sh for 2011.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / del.exp
1 # Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>.
15
16 # The intent of this testcase is to verify that various aliases and
17 # shortcuts of the "delete" command never stop working.
18
19 if $tracelevel then {
20 strace $tracelevel
21 }
22
23
24 set testfile del
25 set srcfile ${testfile}.c
26 set binfile ${objdir}/${subdir}/${testfile}
27 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
28 untested "Couldn't compile test program"
29 return -1
30 }
31
32 # Get things started.
33
34 gdb_exit
35 gdb_start
36 gdb_reinitialize_dir $srcdir/$subdir
37 gdb_load ${binfile}
38
39 # A function to test that ALIAS is working as a shortcut of the "delete"
40 # command.
41
42 proc test_delete_alias { alias } {
43 global srcfile
44
45 # First of all, remove all previous breakpoints if there were any,
46 # and then verify that we do not have any breakpoint lying around.
47 gdb_test_no_output "delete" \
48 "Remove all breakpoints ($alias)"
49
50 gdb_test "info break" \
51 "No breakpoints or watchpoints." \
52 "info break after removing break on main"
53
54
55 # Now, insert a breakpoint at an easy location, and then remove it
56 # using $alias. We verified that the removal worked by checking
57 # the list of breakpoints.
58 gdb_test "break main" \
59 "Breakpoint.*at.* file .*$srcfile, line.*" \
60 "breakpoint insertion ($alias)"
61
62 gdb_test_no_output "$alias \$bpnum" \
63 "Remove last breakpoint ($alias)"
64
65 gdb_test "info break" \
66 "No breakpoints or watchpoints." \
67 "info break after removing break on main ($alias)"
68 }
69
70 # Test various shortcut forms of the "delete" command.
71
72 test_delete_alias "del"
73 test_delete_alias "d"
74
This page took 0.031846 seconds and 4 git commands to generate.