gdb/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / del.exp
CommitLineData
7b6bb8da 1# Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
9b6462d9
JB
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
9b6462d9 6# (at your option) any later version.
e22f8b7c 7#
9b6462d9
JB
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.
e22f8b7c 12#
9b6462d9 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
9b6462d9 15
f9f7ad22 16# The intent of this testcase is to verify that various aliases and
9b6462d9
JB
17# shortcuts of the "delete" command never stop working.
18
19if $tracelevel then {
20 strace $tracelevel
21}
22
9b6462d9
JB
23
24set testfile del
25set srcfile ${testfile}.c
26set binfile ${objdir}/${subdir}/${testfile}
27if { [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
34gdb_exit
35gdb_start
36gdb_reinitialize_dir $srcdir/$subdir
37gdb_load ${binfile}
38
6c0112ec
JB
39# A function to test that ALIAS is working as a shortcut of the "delete"
40# command.
41
42proc 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.
27d3a1a2 47 gdb_test_no_output "delete" \
6c0112ec 48 "Remove all breakpoints ($alias)"
27d3a1a2 49
6c0112ec
JB
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
27d3a1a2 62 gdb_test_no_output "$alias \$bpnum" \
6c0112ec
JB
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
72test_delete_alias "del"
73test_delete_alias "d"
74
This page took 0.507268 seconds and 4 git commands to generate.