]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.hp/gdb.compat/xdb1.exp
Update year range in copyright notice of all files owned by the GDB project.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.hp / gdb.compat / xdb1.exp
1 # Copyright (C) 1992-2015 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 # This file was written by Fred Fish. (fnf@cygnus.com)
17
18 if { [skip_hp_tests] } then { continue }
19
20 #
21 # test running programs
22 #
23
24 set testfile "xdb"
25 set srcfile ${testfile}.c
26 set binfile ${objdir}/${subdir}/${testfile}
27 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
28 untested xdb1.exp
29 return -1
30 }
31
32 if [get_compiler_info] {
33 return -1
34 }
35 if { $gcc_compiled } then { continue }
36
37 global GDBFLAGS
38 set saved_gdbflags $GDBFLAGS
39
40 set GDBFLAGS "$GDBFLAGS --xdb"
41
42 gdb_exit
43 gdb_start
44 gdb_reinitialize_dir $srcdir/$subdir
45 gdb_load ${binfile}
46
47 gdb_test "set pagination off" ""
48 gdb_test "show pagination" "State of pagination is off."
49 gdb_test "set pagination on" ""
50 gdb_test "show pagination" "State of pagination is on."
51
52 gdb_test "txbreak callee" "Breakpoint.*at.*"
53 gdb_test "info break" "Num.*Type.*Disp.*Enb.*Address.*What\r\n.*breakpoint.*del.*y.*"
54
55 gdb_test "xbreak callee" "Breakpoint.*at.*.*"
56 gdb_test "info break" "Num.*Type.*Disp.*Enb.*Address.*What\r\n.*breakpoint.*keep.*y.*"
57
58 gdb_exit
59 set GDBFLAGS $saved_gdbflags
60 return 0
61
62
63
64
65
66
67