OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gdb/] [gdb-6.8/] [gdb/] [testsuite/] [gdb.hp/] [gdb.objdbg/] [objdbg03.exp] - Blame information for rev 25

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 25 jlechner
# Test reading debug information from in object files.
2
 
3
if { [skip_hp_tests] } { continue }
4
 
5
if { ![istarget "hppa*-*-hpux*"] } {
6
    verbose "HPUX test ignored for non-hppa targets."
7
    return 0
8
}
9
 
10
set testfile "test"
11
set srcsubdir ${srcdir}/${subdir}/objdbg03
12
set objdbgdir ${objdir}/${subdir}/objdbg03
13
set binfile ${objdbgdir}/${testfile}
14
set toolssubdir ${srcdir}/${subdir}/tools
15
if [istarget "hppa64-*-*"] {
16
  set symaddrfile ${toolssubdir}/symaddr.pa64
17
} else {
18
  set symaddrfile ${toolssubdir}/symaddr
19
}
20
 
21
# Create and source the file that provides information about the compiler
22
# used to compile the test case.
23
if [get_compiler_info ${binfile}] {
24
    return -1
25
}
26
 
27
if {!$hp_aCC_compiler && !$hp_cc_compiler} {
28
  return 0
29
}
30
 
31
if { [gdb_compile "${toolssubdir}/test-objdbg.cc" "${objdbgdir}/test-objdbg.o" object "debug c++ {additional_flags=-I${toolssubdir} +objdebug}"] != "" } {
32
    untested objdbg03.exp
33
    return -1
34
}
35
 
36
if { [gdb_compile "${srcsubdir}/x1.cc" "${objdbgdir}/x1.o" object "debug c++ {additional_flags=-I${srcsubdir} +objdebug}"] != "" } {
37
    perror "Couldn't compile x1.cc"
38
    return -1
39
}
40
 
41
if { [gdb_compile "${srcsubdir}/x2.cc" "${objdbgdir}/x2.o" object "debug c++ {additional_flags=-I${srcsubdir} +objdebug}"] != "" } {
42
    perror "Couldn't compile x2.cc"
43
    return -1
44
}
45
 
46
if { [gdb_compile "${srcsubdir}/x3.cc" "${objdbgdir}/x3.o" object "debug c++ {additional_flags=-I${srcsubdir} +objdebug}"] != "" } {
47
    perror "Couldn't compile x3.cc"
48
    return -1
49
}
50
 
51
if { [gdb_compile "${objdbgdir}/x1.o ${objdbgdir}/x2.o ${objdbgdir}/x3.o" "${binfile}" executable "debug c++ {additional_flags=-I${srcsubdir} +objdebug}"] != "" } {
52
    perror "Couldn't compile ${binfile}"
53
    return -1
54
}
55
 
56
#
57
# Test some normal commons
58
#
59
 
60
# Print the types
61
 
62
gdb_exit
63
gdb_start
64
gdb_reinitialize_dir ${srcsubdir}
65
gdb_load ${binfile}
66
 
67
gdb_test "ptype common1" "type = int"
68
gdb_test "ptype common2" "type = int"
69
gdb_test "ptype common3" "type = int"
70
gdb_test "ptype data1" "type = int"
71
gdb_test "ptype data2" "type = int"
72
gdb_test "ptype data3" "type = int"
73
gdb_test "ptype common11" "type = int"
74
gdb_test "ptype common10" "type = int"
75
gdb_test "ptype data10" "type = int"
76
gdb_test "ptype data11" "type = int"
77
 
78
# Print the values
79
 
80
gdb_exit
81
gdb_start
82
gdb_reinitialize_dir ${srcsubdir}
83
gdb_load ${binfile}
84
 
85
gdb_test "b main" "Breakpoint \[0-9\]+ at 0x\[0-9a-f\]+: file ..*/x1.cc, line 11."
86
gdb_test "run" "Starting program:.*Breakpoint \[0-9\]+, main .*/x1.cc:11.*"
87
gdb_test "p data1" "..* = 1"
88
gdb_test "p data2" "..* = 2"
89
gdb_test "p data3" "..* = 3"
90
gdb_test "p data10" "..* = 10"
91
gdb_test "p data11" "..* = 11"
92
gdb_test "n" ".*12.*"
93
gdb_test "p common11" "..* = 11"
94
 
95
gdb_test "s 1" "foo .*/x3.cc:15.*"
96
gdb_test "s 4" ".*20.*"
97
gdb_test "p data4" "..* = 4"
98
gdb_test "p common4" "..* = 4"
99
gdb_test "n" ".*21.*"
100
 
101
gdb_test "n" "main .*/x1.cc:14.*"
102
gdb_test "p common1" "..* = 1"
103
gdb_test "p common2" "..* = 2"
104
gdb_test "p common3" "..* = 3"
105
 
106
# Verify that addresses match those in the executable
107
 
108
gdb_exit
109
gdb_start
110
gdb_reinitialize_dir ${srcsubdir}
111
gdb_load ${binfile}
112
 
113
set exec_output_data1 [lindex [remote_exec build "${symaddrfile} ${binfile} data1"] 1]
114
regsub -all "\[\r\n\]" ${exec_output_data1} "" exec_output_data1
115
 
116
set exec_output_data2 [lindex [remote_exec build "${symaddrfile} ${binfile} data2"] 1]
117
regsub -all "\[\r\n\]" ${exec_output_data2} "" exec_output_data2
118
 
119
set exec_output_data3 [lindex [remote_exec build "${symaddrfile} ${binfile} data3"] 1]
120
regsub -all "\[\r\n\]" ${exec_output_data3} "" exec_output_data3
121
 
122
set exec_output_data10 [lindex [remote_exec build "${symaddrfile} ${binfile} data10"] 1]
123
regsub -all "\[\r\n\]" ${exec_output_data10} "" exec_output_data10
124
 
125
set exec_output_data11 [lindex [remote_exec build "${symaddrfile} ${binfile} data11"] 1]
126
regsub -all "\[\r\n\]" ${exec_output_data11} "" exec_output_data11
127
 
128
set exec_output_common1 [lindex [remote_exec build "${symaddrfile} ${binfile} common1"] 1]
129
regsub -all "\[\r\n\]" ${exec_output_common1} "" exec_output_common1
130
 
131
set exec_output_common2 [lindex [remote_exec build "${symaddrfile} ${binfile} common2"] 1]
132
regsub -all "\[\r\n\]" ${exec_output_common2} "" exec_output_common2
133
 
134
set exec_output_common3 [lindex [remote_exec build "${symaddrfile} ${binfile} common3"] 1]
135
regsub -all "\[\r\n\]" ${exec_output_common3} "" exec_output_common3
136
 
137
set exec_output_common10 [lindex [remote_exec build "${symaddrfile} ${binfile} common10"] 1]
138
regsub -all "\[\r\n\]" ${exec_output_common10} "" exec_output_common10
139
 
140
set exec_output_common11 [lindex [remote_exec build "${symaddrfile} ${binfile} common11"] 1]
141
regsub -all "\[\r\n\]" ${exec_output_common11} "" exec_output_common11
142
 
143
if [istarget "hppa64-*-*"] {
144
    gdb_test "p &data1" "..* = \\(int \[*\]\\) ${exec_output_data1}"
145
    gdb_test "p &data2" "..* = \\(int \[*\]\\) ${exec_output_data2}"
146
    gdb_test "p &data3" "..* = \\(int \[*\]\\) ${exec_output_data3}"
147
    gdb_test "p &data10" "..* = \\(int \[*\]\\) ${exec_output_data10}"
148
    gdb_test "p &data11" "..* = \\(int \[*\]\\) ${exec_output_data11}"
149
    gdb_test "p &common1" "..* = \\(int \[*\]\\) ${exec_output_common1}"
150
    gdb_test "p &common2" "..* = \\(int \[*\]\\) ${exec_output_common2}"
151
    gdb_test "p &common3" "..* = \\(int \[*\]\\) ${exec_output_common3}"
152
    gdb_test "p &common10" "..* = \\(int \[*\]\\) ${exec_output_common10}"
153
    gdb_test "p &common11" "..* = \\(int \[*\]\\) ${exec_output_common11}"
154
} else {
155
    gdb_test "p &data1" "..* = \\(int \[*\]\\) 0x${exec_output_data1}"
156
    gdb_test "p &data2" "..* = \\(int \[*\]\\) 0x${exec_output_data2}"
157
    gdb_test "p &data3" "..* = \\(int \[*\]\\) 0x${exec_output_data3}"
158
    gdb_test "p &data10" "..* = \\(int \[*\]\\) 0x${exec_output_data10}"
159
    gdb_test "p &data11" "..* = \\(int \[*\]\\) 0x${exec_output_data11}"
160
    gdb_test "p &common1" "..* = \\(int \[*\]\\) 0x${exec_output_common1}"
161
    gdb_test "p &common2" "..* = \\(int \[*\]\\) 0x${exec_output_common2}"
162
    gdb_test "p &common3" "..* = \\(int \[*\]\\) 0x${exec_output_common3}"
163
    gdb_test "p &common10" "..* = \\(int \[*\]\\) 0x${exec_output_common10}"
164
    gdb_test "p &common11" "..* = \\(int \[*\]\\) 0x${exec_output_common11}"
165
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.