]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/del.exp
Update Copyright year range in all files maintained by GDB.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / del.exp
CommitLineData
ecd75fc8 1# Copyright 2006-2014 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
9b6462d9 19
f76495c8
TT
20standard_testfile
21
22if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
23 untested $testfile.exp
9b6462d9
JB
24 return -1
25}
26
6c0112ec
JB
27# A function to test that ALIAS is working as a shortcut of the "delete"
28# command.
29
30proc test_delete_alias { alias } {
31 global srcfile
32
33 # First of all, remove all previous breakpoints if there were any,
34 # and then verify that we do not have any breakpoint lying around.
27d3a1a2 35 gdb_test_no_output "delete" \
6c0112ec 36 "Remove all breakpoints ($alias)"
27d3a1a2 37
6c0112ec
JB
38 gdb_test "info break" \
39 "No breakpoints or watchpoints." \
40 "info break after removing break on main"
41
42
43 # Now, insert a breakpoint at an easy location, and then remove it
44 # using $alias. We verified that the removal worked by checking
45 # the list of breakpoints.
46 gdb_test "break main" \
47 "Breakpoint.*at.* file .*$srcfile, line.*" \
48 "breakpoint insertion ($alias)"
49
27d3a1a2 50 gdb_test_no_output "$alias \$bpnum" \
6c0112ec
JB
51 "Remove last breakpoint ($alias)"
52
53 gdb_test "info break" \
54 "No breakpoints or watchpoints." \
55 "info break after removing break on main ($alias)"
56}
57
58# Test various shortcut forms of the "delete" command.
59
60test_delete_alias "del"
61test_delete_alias "d"
62