1 # Copyright 2006-2019 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 3 of the License, or
6 # (at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
16 # The intent of this testcase is to verify that various aliases and
17 # shortcuts of the "delete" command never stop working.
22 if {[prepare_for_testing "failed to prepare" $testfile $srcfile debug]} {
26 # A function to test that ALIAS is working as a shortcut of the "delete"
29 proc test_delete_alias { alias } {
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.
34 gdb_test_no_output "delete" \
35 "remove all breakpoints ($alias)"
37 gdb_test "info break" \
38 "No breakpoints or watchpoints." \
39 "info break after removing break on main"
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.
45 gdb_test "break main" \
46 "Breakpoint.*at.* file .*$srcfile, line.*" \
47 "breakpoint insertion ($alias)"
49 gdb_test_no_output "$alias \$bpnum" \
50 "Remove last breakpoint ($alias)"
52 gdb_test "info break" \
53 "No breakpoints or watchpoints." \
54 "info break after removing break on main ($alias)"
57 # Test various shortcut forms of the "delete" command.
59 test_delete_alias "del"