OSDN Git Service

Copyright year update in most files of the GDB Project.
[pf3gnuchains/pf3gnuchains4x.git] / gdb / testsuite / gdb.hp / gdb.compat / xdb1.exp
1 # Copyright (C) 1992, 1994-1995, 2007-2012 Free Software Foundation,
2 # Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 # This file was written by Fred Fish. (fnf@cygnus.com)
18
19 if $tracelevel then {
20         strace $tracelevel
21         }
22
23 if { [skip_hp_tests] } then { continue }
24
25 #
26 # test running programs
27 #
28
29 set testfile "xdb"
30 set srcfile ${testfile}.c
31 set binfile ${objdir}/${subdir}/${testfile}
32 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
33      untested xdb1.exp
34      return -1
35 }
36
37 if [get_compiler_info ${binfile}] {
38     return -1;
39 }
40 if { $gcc_compiled } then { continue }
41
42 global GDBFLAGS
43 set saved_gdbflags $GDBFLAGS
44
45 set GDBFLAGS "$GDBFLAGS --xdb"
46
47 gdb_exit
48 gdb_start
49 gdb_reinitialize_dir $srcdir/$subdir
50 gdb_load ${binfile}
51
52 gdb_test "set pagination off" ""
53 gdb_test "show pagination" "State of pagination is off."
54 gdb_test "set pagination on" ""
55 gdb_test "show pagination" "State of pagination is on."
56
57 gdb_test "txbreak callee" "Breakpoint.*at.*"
58 gdb_test "info break" "Num.*Type.*Disp.*Enb.*Address.*What\r\n.*breakpoint.*del.*y.*"
59
60 gdb_test "xbreak callee" "Breakpoint.*at.*.*"
61 gdb_test "info break" "Num.*Type.*Disp.*Enb.*Address.*What\r\n.*breakpoint.*keep.*y.*"
62
63 gdb_exit
64 set GDBFLAGS $saved_gdbflags
65 return 0
66
67
68
69
70
71
72