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