Initial revision
[binutils.git] / binutils / testsuite / binutils-all / objdump.exp
blob7c50f02fb6d2d2f5f5e795371e7b52ec3b3eca1f
1 # Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
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.
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.
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-dejagnu@prep.ai.mit.edu
20 # This file was written by Rob Savoye <rob@cygnus.com>
21 # and rewritten by Ian Lance Taylor <ian@cygnus.com>
23 if ![is_remote host] {
24 if {[which $OBJDUMP] == 0} then {
25 perror "$OBJDUMP does not exist"
26 return
30 send_user "Version [binutil_version $OBJDUMP]"
32 # Simple test of objdump -i
34 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -i"]
36 set cpus_expected "(a29k|alliant|alpha|arc|arm|convex|d10v|d30v|h8|hppa|i386|i860|i960|m32r|m68k|m88k|mips|mn10200|mn10300|ns32k|powerpc|pyramid|romp|rs6000|sh|sparc|tahoe|v850|vax|we32k|z8k|z8001|z8002)"
38 # Make sure the target CPU shows up in the list.
39 if ![regexp $cpus_expected $target_cpu] {
40 regsub "^\[(\]" "$cpus_expected" "(${target_cpu}|" cpus_expected;
43 set want "BFD header file version.*srec.*header .* endian.*, data .* endian.*$cpus_expected"
45 if [regexp $want $got] then {
46 pass "objdump -i"
47 } else {
48 fail "objdump -i"
51 # The remaining tests require a test file.
54 if {![binutils_assemble $srcdir/$subdir/bintest.s tmpdir/bintest.o]} then {
55 return
57 if [is_remote host] {
58 set testfile [remote_download host tmpdir/bintest.o]
59 } else {
60 set testfile tmpdir/bintest.o
63 # Test objdump -f
65 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f $testfile"]
67 set want "$testfile:\[ \]*file format.*architecture:\[ \]*${cpus_expected}.*HAS_RELOC.*HAS_SYMS"
69 if ![regexp $want $got] then {
70 fail "objdump -f"
71 } else {
72 pass "objdump -f"
75 # Test objdump -h
77 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h $testfile"]
79 set want "$testfile:\[ \]*file format.*Sections.*\[0-9\]+\[ \]+\[^ \]*(text|TEXT|\\\$CODE\\\$)\[^ \]*\[ \]*(\[0-9a-fA-F\]+).*\[0-9\]+\[ \]+\[^ \]*(\\.data|DATA)\[^ \]*\[ \]*(\[0-9a-fA-F\]+)"
81 if ![regexp $want $got all text_name text_size data_name data_size] then {
82 fail "objdump -h"
83 } else {
84 verbose "text name is $text_name size is $text_size"
85 verbose "data name is $data_name size is $data_size"
86 if {[expr "0x$text_size"] < 8 || [expr "0x$data_size"] < 4} then {
87 send_log "sizes too small\n"
88 fail "objdump -h"
89 } else {
90 pass "objdump -h"
94 # Test objdump -t
96 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -t $testfile"]
98 if [info exists vars] then { unset vars }
99 while {[regexp "(\[a-z\]*_symbol)(.*)" $got all symbol rest]} {
100 set vars($symbol) 1
101 set got $rest
104 if {![info exists vars(text_symbol)] \
105 || ![info exists vars(data_symbol)] \
106 || ![info exists vars(common_symbol)] \
107 || ![info exists vars(external_symbol)]} then {
108 fail "objdump -t"
109 } else {
110 pass "objdump -t"
113 # Test objdump -r
115 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -r $testfile"]
117 set want "$testfile:\[ \]*file format.*RELOCATION RECORDS FOR \\\[\[^\]\]*(text|TEXT|\\\$CODE\\\$)\[^\]\]*\\\].*external_symbol"
119 if [regexp $want $got] then {
120 pass "objdump -r"
121 } else {
122 fail "objdump -r"
125 # Test objdump -s
127 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -s $testfile"]
129 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)"
131 if [regexp $want $got] then {
132 pass "objdump -s"
133 } else {
134 fail "objdump -s"
137 # Options which are not tested: -a -d -D -R -T -x -l --stabs
138 # I don't see any generic way to test any of these other than -a.
139 # Tests could be written for specific targets, and that should be done
140 # if specific problems are found.