]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.hp/gdb.compat/xdb1.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.hp / gdb.compat / xdb1.exp
CommitLineData
8acc9f48 1# Copyright (C) 1992-2013 Free Software Foundation, Inc.
7be570e7
JM
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
7be570e7
JM
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
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>. */
7be570e7 15
7be570e7
JM
16# This file was written by Fred Fish. (fnf@cygnus.com)
17
7be570e7
JM
18if { [skip_hp_tests] } then { continue }
19
7be570e7
JM
20#
21# test running programs
22#
7be570e7
JM
23
24set testfile "xdb"
25set srcfile ${testfile}.c
26set binfile ${objdir}/${subdir}/${testfile}
27if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
28 untested xdb1.exp
29 return -1
7be570e7
JM
30}
31
4c93b1db 32if [get_compiler_info] {
7be570e7
JM
33 return -1;
34}
35if { $gcc_compiled } then { continue }
36
37global GDBFLAGS
38set saved_gdbflags $GDBFLAGS
39
40set GDBFLAGS "$GDBFLAGS --xdb"
41
42gdb_exit
43gdb_start
44gdb_reinitialize_dir $srcdir/$subdir
45gdb_load ${binfile}
46
47gdb_test "set pagination off" ""
48gdb_test "show pagination" "State of pagination is off."
49gdb_test "set pagination on" ""
50gdb_test "show pagination" "State of pagination is on."
51
52gdb_test "txbreak callee" "Breakpoint.*at.*"
53gdb_test "info break" "Num.*Type.*Disp.*Enb.*Address.*What\r\n.*breakpoint.*del.*y.*"
54
55gdb_test "xbreak callee" "Breakpoint.*at.*.*"
56gdb_test "info break" "Num.*Type.*Disp.*Enb.*Address.*What\r\n.*breakpoint.*keep.*y.*"
57
58gdb_exit
59set GDBFLAGS $saved_gdbflags
60return 0
61
62
63
64
65
66
67