This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/binutils-gdb.git] / binutils / testsuite / binutils-all / objdump.exp
1 # Copyright (C) 1993, 1994, 1995, 1996 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-dejagnu@prep.ai.mit.edu
19
20 # This file was written by Rob Savoye <rob@cygnus.com>
21 # and rewritten by Ian Lance Taylor <ian@cygnus.com>
22
23 if ![is_remote host] {
24 if {[which $OBJDUMP] == 0} then {
25 perror "$OBJDUMP does not exist"
26 return
27 }
28 }
29
30 send_user "Version [binutil_version $OBJDUMP]"
31
32 # Simple test of objdump -i
33
34 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -i"]
35
36 set cpus_expected "(a29k|alliant|alpha|arc|arm|convex|d10v|h8|hppa|i386|i860|i960|m32r|m68k|m88k|mips|mn10200|mn10300|ns32k|powerpc|pyramid|romp|rs6000|sh|sparc|tahoe|vax|we32k|z8k|z8001|z8002)"
37 # start-sanitize-d30v
38 set cpus_expected "(a29k|alliant|alpha|arc|arm|convex|d10v|h8|hppa|i386|i860|i960|d30v|m32r|m68k|m88k|mips|mn10200|mn10300|ns32k|powerpc|pyramid|romp|rs6000|sh|sparc|tahoe|vax|we32k|z8k|z8001|z8002)"
39 # end-sanitize-d30v
40 # start-sanitize-sky
41 set cpus_expected "(a29k|alliant|alpha|arc|arm|convex|d10v|h8|hppa|i386|i860|i960|m32r|m68k|m88k|mips|mn10200|mn10300|ns32k|powerpc|pyramid|romp|rs6000|sh|sparc|tahoe|txvu|vax|we32k|z8k|z8001|z8002)"
42 # end-sanitize-sky
43
44 # Make sure the target CPU shows up in the list.
45 if ![regexp $cpus_expected $target_cpu] {
46 regsub "^\[(\]" "$cpus_expected" "(${target_cpu}|" cpus_expected;
47 }
48
49 set want "BFD header file version.*srec.*header .* endian.*, data .* endian.*$cpus_expected"
50
51 if [regexp $want $got] then {
52 pass "objdump -i"
53 } else {
54 fail "objdump -i"
55 }
56
57 # The remaining tests require a test file.
58
59
60 if {![binutils_assemble $srcdir/$subdir/bintest.s tmpdir/bintest.o]} then {
61 return
62 }
63 if [is_remote host] {
64 set testfile [remote_download host tmpdir/bintest.o]
65 } else {
66 set testfile tmpdir/bintest.o
67 }
68
69 # Test objdump -f
70
71 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f $testfile"]
72
73 set want "$testfile:\[ \]*file format.*architecture:\[ \]*${cpus_expected}.*HAS_RELOC.*HAS_SYMS"
74
75 if ![regexp $want $got] then {
76 fail "objdump -f"
77 } else {
78 pass "objdump -f"
79 }
80
81 # Test objdump -h
82
83 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h $testfile"]
84
85 set want "$testfile:\[ \]*file format.*Sections.*\[0-9\]+\[ \]+\[^ \]*(text|TEXT|\\\$CODE\\\$)\[^ \]*\[ \]*(\[0-9a-fA-F\]+).*\[0-9\]+\[ \]+\[^ \]*(data|DATA)\[^ \]*\[ \]*(\[0-9a-fA-F\]+)"
86
87 if ![regexp $want $got all text_name text_size data_name data_size] then {
88 fail "objdump -h"
89 } else {
90 verbose "text name is $text_name size is $text_size"
91 verbose "data name is $data_name size is $data_size"
92 if {[expr "0x$text_size"] < 8 || [expr "0x$data_size"] < 4} then {
93 send_log "sizes too small\n"
94 fail "objdump -h"
95 } else {
96 pass "objdump -h"
97 }
98 }
99
100 # Test objdump -t
101
102 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -t $testfile"]
103
104 if [info exists vars] then { unset vars }
105 while {[regexp "(\[a-z\]*_symbol)(.*)" $got all symbol rest]} {
106 set vars($symbol) 1
107 set got $rest
108 }
109
110 if {![info exists vars(text_symbol)] \
111 || ![info exists vars(data_symbol)] \
112 || ![info exists vars(common_symbol)] \
113 || ![info exists vars(external_symbol)]} then {
114 fail "objdump -t"
115 } else {
116 pass "objdump -t"
117 }
118
119 # Test objdump -r
120
121 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -r $testfile"]
122
123 set want "$testfile:\[ \]*file format.*RELOCATION RECORDS FOR \\\[\[^\]\]*(text|TEXT|\\\$CODE\\\$)\[^\]\]*\\\].*external_symbol"
124
125 if [regexp $want $got] then {
126 pass "objdump -r"
127 } else {
128 fail "objdump -r"
129 }
130
131 # Test objdump -s
132
133 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -s $testfile"]
134
135 set want "$testfile:\[ \]*file format.*Contents.*(text|TEXT|\\\$CODE\\\$)\[^0-9\]*\[ \]*\[0-9a-fA-F\]*\[ \]*(00000001|01000000).*Contents.*(data|DATA)\[^0-9\]*\[ \]*\[0-9a-fA-F\]*\[ \]*(00000002|02000000)"
136
137 if [regexp $want $got] then {
138 pass "objdump -s"
139 } else {
140 fail "objdump -s"
141 }
142
143 # Options which are not tested: -a -d -D -R -T -x -l --stabs
144 # I don't see any generic way to test any of these other than -a.
145 # Tests could be written for specific targets, and that should be done
146 # if specific problems are found.
This page took 0.032894 seconds and 5 git commands to generate.