OSDN Git Service

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