1# Copyright 2006-2013 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
20set testfile del
21set srcfile ${testfile}.c
22set binfile ${objdir}/${subdir}/${testfile}
23if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
24    untested "Couldn't compile test program"
25    return -1
26}
27
28# Get things started.
29
30gdb_exit
31gdb_start
32gdb_reinitialize_dir $srcdir/$subdir
33gdb_load ${binfile}
34
35# A function to test that ALIAS is working as a shortcut of the "delete"
36# command.
37
38proc test_delete_alias { alias } {
39    global srcfile
40
41    # First of all, remove all previous breakpoints if there were any,
42    # and then verify that we do not have any breakpoint lying around.
43    gdb_test_no_output "delete" \
44             "Remove all breakpoints ($alias)"
45
46    gdb_test "info break" \
47             "No breakpoints or watchpoints." \
48             "info break after removing break on main"
49
50
51    # Now, insert a breakpoint at an easy location, and then remove it
52    # using $alias. We verified that the removal worked by checking
53    # the list of breakpoints.
54    gdb_test "break main" \
55             "Breakpoint.*at.* file .*$srcfile, line.*" \
56             "breakpoint insertion ($alias)"
57
58    gdb_test_no_output "$alias \$bpnum" \
59             "Remove last breakpoint ($alias)"
60
61    gdb_test "info break" \
62             "No breakpoints or watchpoints." \
63             "info break after removing break on main ($alias)"
64}
65
66# Test various shortcut forms of the "delete" command.
67
68test_delete_alias "del"
69test_delete_alias "d"
70
71