]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/long_long.exp
import gdb-1999-08-02 snapshot
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / long_long.exp
1 # Copyright (C) 1997, 1998 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 2 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, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
16
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-gdb@prep.ai.mit.edu
19
20
21 # long_long.exp Test printing of 64-bit things in 32-bit gdb.
22 # Also test differnet kinds of formats.
23 #
24 if $tracelevel then {
25 strace $tracelevel
26 }
27
28 set testfile long_long
29 set srcfile ${srcdir}/${subdir}/${testfile}.c
30 set binfile ${objdir}/${subdir}/${testfile}
31
32 # What compiler are we using?
33 #
34 if [get_compiler_info ${binfile}] {
35 return -1
36 }
37
38 if {$hp_cc_compiler} {
39 set flag "+e"
40 } else {
41 set flag ""
42 }
43
44 if { [gdb_compile "${srcfile}" "${binfile}" executable [concat debug "additional_flags=$flag -w"]] != "" } {
45 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
46 }
47
48 # use this to debug:
49 #log_user 1
50
51 gdb_exit
52 gdb_start
53 gdb_reinitialize_dir $srcdir/$subdir
54 gdb_load ${binfile}
55
56 if { ![runto known_types] } then {
57 fail "run to known_types"
58 return
59 }
60
61 gdb_test "n 4" ".*38.*" "get to known place"
62
63 # Check the hack for long long prints.
64 #
65 gdb_test "p/x hex" ".*0x0*0.*" "hex print p/x"
66 gdb_test "p/x dec" ".*0xab54a98ceb1f0ad2.*" "decimal print p/x"
67 # see if 'p/<code>' is handled same as 'p /<code>'
68 #
69 gdb_test "p /x dec" ".*0xab54a98ceb1f0ad2.*" "default print dec"
70 gdb_test "p /x bin" ".*0x0*123456789abcdef.*" "default print bin"
71 gdb_test "p /x oct" ".*0xa72ee53977053977.*" "default print oct"
72 gdb_test "p hex" ".*= 0*x*0*0.*" "default print hex"
73
74 gdb_test "p/u dec" ".*12345678901234567890.*" "decimal print p/u"
75 gdb_test "p/t bin" ".*0*100100011010001010110011110001001101010111100110111101111.*" "binary print"
76 gdb_test "p/o oct" ".*01234567123456701234567.*" "octal print"
77 gdb_test "p /d bin" ".*81985529216486895.*" "print +ve long long"
78 gdb_test "p/d dec" ".*-6101065172474983726.*" "decimal print p/d"
79
80 # Try all the combinations to bump up coverage.
81 #
82 gdb_test "p/d oct" ".*-6399925985474168457.*"
83 gdb_test "p/u oct" ".*12046818088235383159.*"
84 gdb_test "p/o oct" ".*.*"
85 gdb_test "p/t oct" ".*1010011100101110111001010011100101110111000001010011100101110111.*"
86 gdb_test "p/a oct" ".*0x.*77053977.*"
87 gdb_test "p/c oct" ".*'w'.*"
88 gdb_test "p/f oct" ".*-5.9822653797615723e-120.*"
89
90 gdb_test "p/d *(int *)&oct" ".*-1490098887.*"
91 gdb_test "p/u *(int *)&oct" ".*2804868409.*"
92 gdb_test "p/o *(int *)&oct" ".*024713562471.*"
93 gdb_test "p/t *(int *)&oct" ".*10100111001011101110010100111001.*"
94 gdb_test "p/a *(int *)&oct" ".*0xf*a72ee539.*"
95 gdb_test "p/c *(int *)&oct" ".*57 '9'.*"
96 gdb_test "p/f *(int *)&oct" ".*-2.42716126e-15.*"
97
98 gdb_test "p/d *(short *)&oct" ".*-22738.*"
99 gdb_test "p/u *(short *)&oct" ".*42798.*"
100 gdb_test "p/o *(short *)&oct" ".*0123456.*"
101 gdb_test "p/t *(short *)&oct" ".*1010011100101110.*"
102 gdb_test "p/a *(short *)&oct" ".*0xf*ffffa72e.*"
103 gdb_test "p/c *(short *)&oct" ".* 46 '.'.*"
104 gdb_test "p/a *(short *)&oct" ".*0xf*ffffa72e.*"
105 gdb_test "p/f *(short *)&oct" ".*-22738.*"
106
107 gdb_test "x/x &oct" ".*0xa72ee539.*"
108 gdb_test "x/d &oct" ".*.-1490098887*"
109 gdb_test "x/u &oct" ".*2804868409.*"
110 gdb_test "x/o &oct" ".*024713562471.*"
111 gdb_test "x/t &oct" ".*10100111001011101110010100111001.*"
112 gdb_test "x/a &oct" ".*0xa72ee539.*"
113 gdb_test "x/c &oct" ".*-89 '\\\\247'.*"
114 gdb_test "x/f &oct" ".*-5.9822653797615723e-120.*"
115
116 gdb_test "x/2x &oct" ".*.*"
117 gdb_test "x/2d &oct" ".*.*"
118 gdb_test "x/2u &oct" ".*.*"
119 gdb_test "x/2o &oct" ".*.*"
120 gdb_test "x/2t &oct" ".*.*"
121 gdb_test "x/2a &oct" ".*.*"
122 gdb_test "x/2c &oct" ".*.*"
123 gdb_test "x/2f &oct" ".*.*"
124
125 gdb_test "x/2bx &oct" ".*.*"
126 gdb_test "x/2bd &oct" ".*.*"
127 gdb_test "x/2bu &oct" ".*.*"
128 gdb_test "x/2bo &oct" ".*.*"
129 gdb_test "x/2bt &oct" ".*.*"
130 gdb_test "x/2ba &oct" ".*.*"
131 gdb_test "x/2bc &oct" ".*.*"
132 gdb_test "x/2bf &oct" ".*.*"
133
134 gdb_test "x/2hx &oct" ".*.*"
135 gdb_test "x/2hd &oct" ".*.*"
136 gdb_test "x/2hu &oct" ".*.*"
137 gdb_test "x/2ho &oct" ".*.*"
138 gdb_test "x/2ht &oct" ".*.*"
139 gdb_test "x/2ha &oct" ".*.*"
140 gdb_test "x/2hc &oct" ".*.*"
141 gdb_test "x/2hf &oct" ".*.*"
142
143 gdb_test "x/2wx &oct" ".*.*"
144 gdb_test "x/2wd &oct" ".*.*"
145 gdb_test "x/2wu &oct" ".*.*"
146 gdb_test "x/2wo &oct" ".*.*"
147 gdb_test "x/2wt &oct" ".*.*"
148 gdb_test "x/2wa &oct" ".*.*"
149 gdb_test "x/2wc &oct" ".*.*"
150 gdb_test "x/2wf &oct" ".*.*"
151
152 gdb_test "x/2gx &oct" ".*.*"
153 gdb_test "x/2gd &oct" ".*.*"
154 gdb_test "x/2gu &oct" ".*.*"
155 gdb_test "x/2go &oct" ".*.*"
156 gdb_test "x/2gt &oct" ".*.*"
157 gdb_test "x/2ga &oct" ".*.*"
158 gdb_test "x/2gc &oct" ".*.*"
159 gdb_test "x/2gf &oct" ".*.*"
160
161 gdb_exit
162 return 0