]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.hp/gdb.compat/xdb1.exp
Fix for PR gdb/1543.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.hp / gdb.compat / xdb1.exp
1 # Copyright (C) 1992, 1994, 1995, 2007, 2008 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 $tracelevel then {
19 strace $tracelevel
20 }
21
22 if { [skip_hp_tests] } then { continue }
23
24 global usestubs
25
26 #
27 # test running programs
28 #
29 set prms_id 0
30 set bug_id 0
31
32 set testfile "xdb"
33 set srcfile ${testfile}.c
34 set binfile ${objdir}/${subdir}/${testfile}
35 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
36 untested xdb1.exp
37 return -1
38 }
39
40 if [get_compiler_info ${binfile}] {
41 return -1;
42 }
43 if { $gcc_compiled } then { continue }
44
45 global GDBFLAGS
46 set saved_gdbflags $GDBFLAGS
47
48 set GDBFLAGS "$GDBFLAGS --xdb"
49
50 gdb_exit
51 gdb_start
52 gdb_reinitialize_dir $srcdir/$subdir
53 gdb_load ${binfile}
54
55 gdb_test "set pagination off" ""
56 gdb_test "show pagination" "State of pagination is off."
57 gdb_test "set pagination on" ""
58 gdb_test "show pagination" "State of pagination is on."
59
60 gdb_test "txbreak callee" "Breakpoint.*at.*"
61 gdb_test "info break" "Num.*Type.*Disp.*Enb.*Address.*What\r\n.*breakpoint.*del.*y.*"
62
63 gdb_test "xbreak callee" "Breakpoint.*at.*.*"
64 gdb_test "info break" "Num.*Type.*Disp.*Enb.*Address.*What\r\n.*breakpoint.*keep.*y.*"
65
66 gdb_exit
67 set GDBFLAGS $saved_gdbflags
68 return 0
69
70
71
72
73
74
75