]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.hp/gdb.base-hp/pxdb.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.hp / gdb.base-hp / pxdb.exp
1 # Copyright (C) 1998-2013 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
17 # This file is part of the gdb testsuite
18
19
20 # pxdb.exp Test that gdb calls pxdb on an application
21 # built without it.
22 #
23
24 if { [skip_hp_tests] } then { continue }
25
26 set testfile pxdb
27 set srcfile ${testfile}.c
28 set objfile ${objdir}/${subdir}/${testfile}.o
29 set binfile ${objdir}/${subdir}/${testfile}
30
31 if [get_compiler_info "c++"] {
32 return -1;
33 }
34
35 if { $gcc_compiled } then { continue }
36
37 # To build a non-pxdb-ed file, use
38 #
39 # <compile to .o file>
40 # export LD_PXDB /dev/null
41 # ld -o hello_no_pxdb hello.o /opt/langtools/lib/end.o /usr/ccs/lib/crt0.o -lc
42 #
43
44 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object {debug}] != "" } {
45 untested pxdb.exp
46 return -1
47 }
48
49 #
50 # use this to debug:
51 #log_user 1
52
53
54 # Following should get the error message:
55 #
56 # ld: (Warning) Can't exec pxdb using path: /dev/null
57 #
58 #execute_anywhere "ksh -c \"export LD_PXDB=/dev/null\""
59
60 if [istarget "hppa64-*-*"] {
61 set cmdline "ksh -c \"LD_PXDB=/dev/null ld -o ${binfile} ${objfile} /opt/langtools/lib/pa20_64/crt0.o /opt/langtools/lib/pa20_64/end.o -lc\""
62 } else {
63 set cmdline "ksh -c \"LD_PXDB=/dev/null ld -o ${binfile} ${objfile} /usr/ccs/lib/crt0.o /opt/langtools/lib/end.o -lc\""
64 }
65
66 remote_exec build "rm ${binfile}"
67 remote_exec build $cmdline
68
69 gdb_exit
70 gdb_start
71 gdb_reinitialize_dir $srcdir/$subdir
72
73 # We expect to see this:
74 #
75 # "warning: File not processed by pxdb--about to process now.
76 # "
77 # ".
78 # "Procedures: 7
79 # "Files: 2
80 # "Reading symbols from ~/c_code.dir/hello_no_pxdb...done.
81 # "(gdb)
82 #
83 send_gdb "file ${binfile}\n"
84 gdb_expect {
85
86 -re ".*warning: File not processed by pxdb.*Procedures: \[0-9\]+.*$gdb_prompt $"\
87 { pass "PXDB call" }
88
89 -re "$gdb_prompt $" {
90 if [istarget hppa*-*-hpux*] {
91 pass "Didn't call pxdb"
92 } else {
93 fail "Didn't call pxdb"
94 }
95 }
96
97 -re ".*$gdb_prompt $" { fail "Some other message" }
98
99 timeout { fail "call pxdb (timeout)" }
100 }
101
102 # Make sure the new data makes sense
103 #
104 if { ![runto callee] } then { return }
105
106 send_gdb "print x\n"
107 gdb_expect {
108 -re ".*= 1.*$gdb_prompt $" { pass "Good data after pxdb call" }
109 -re ".*$gdb_prompt $" { fail "No data after pxdb call" }
110 timeout { fail "(timeout)" }
111 }
112
113 gdb_exit
114 return 0
115
116
117
118
119