Remove C comment characters from modified FSF address in expect scripts.
[external/binutils.git] / binutils / testsuite / binutils-all / objdump.exp
1 #   Copyright (C) 1993, 1994 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 {[which $OBJDUMP] == 0} then {
24     perror "$OBJDUMP does not exist"
25     return
26 }
27
28 send_user "Version [binutil_version $OBJDUMP]"
29
30 # Simple test of objdump -i
31
32 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -i"]
33
34 set cpus_expected "(a29k|alliant|alpha|arm|convex|h8|hppa|i386|i860|i960|m68k|m88k|mips|ns32k|powerpc|pyramid|romp|rs6000|sh|sparc|tahoe|vax|we32k|z8k)"
35 # start-sanitize-arc
36 set cpus_expected "(a29k|alliant|alpha|arc|arm|convex|h8|hppa|i386|i860|i960|m68k|m88k|mips|ns32k|powerpc|pyramid|romp|rs6000|sh|sparc|tahoe|vax|we32k|z8k)"
37 # end-sanitize-arc
38
39 set want "BFD header file version.*srec.*header .* endian, data .* endian.*$cpus_expected"
40
41 if [regexp $want $got] then {
42     pass "objdump -i"
43 } else {
44     fail "objdump -i"
45 }
46
47 # The remaining tests require a test file.
48
49
50 if {![binutils_assemble $AS $srcdir$subdir/bintest.s tmpdir/bintest.o]} then {
51     return
52 }
53
54 # Test objdump -f
55
56 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f tmpdir/bintest.o"]
57
58 set want "tmpdir/bintest.o:\[   \]*file format.*architecture:\[         \]*${cpus_expected}.*HAS_RELOC.*HAS_SYMS"
59
60 if ![regexp $want $got] then {
61     fail "objdump -f"
62 } else {
63     pass "objdump -f"
64 }
65
66 # Test objdump -h
67
68 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h tmpdir/bintest.o"]
69
70 set want "tmpdir/bintest.o:\[   \]*file format.*SECTION\[       ]*\[0-9\]+\[    \]*\\\[\[^\]\]*(text|TEXT|CODE)\[^\]\]*\\\]\[   :\]*size\[      \]*(\[0-9a-fA-F\]+)\[   \]*.*SECTION\[  \]*\[0-9\]+\[   \]*\\\[\[^\]\]*(data|DATA)\[^\]\]*\\\]\[        :\]*size\[      \]*(\[0-9a-fA-F\]+)\[   \]*"
71
72 if ![regexp $want $got all text_name text_size data_name data_size] then {
73     fail "objdump -h"
74 } else {
75     verbose "text size is $text_size"
76     verbose "data size is $data_size"
77     if {[expr "0x$text_size"] < 8 || [expr "0x$data_size"] < 4} then {
78         send_log "sizes too small\n"
79         fail "objdump -h"
80     } else {
81         pass "objdump -h"
82     }
83 }
84
85 # Test objdump -t
86
87 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -t tmpdir/bintest.o"]
88
89 if [info exists vars] then { unset vars }
90 while {[regexp "(\[a-z\]*_symbol)(.*)" $got all symbol rest]} {
91     set vars($symbol) 1
92     set got $rest
93 }
94
95 if {![info exists vars(text_symbol)] \
96      || ![info exists vars(data_symbol)] \
97      || ![info exists vars(common_symbol)] \
98      || ![info exists vars(external_symbol)]} then {
99     fail "objdump -t"
100 } else {
101     pass "objdump -t"
102 }
103
104 # Test objdump -r
105
106 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -r tmpdir/bintest.o"]
107
108 set want "tmpdir/bintest.o:\[   \]*file format.*RELOCATION RECORDS FOR \\\[\[^\]\]*(text|TEXT|CODE)\[^\]\]*\\\].*external_symbol"
109
110 if [regexp $want $got] then {
111     pass "objdump -r"
112 } else {
113     fail "objdump -r"
114 }
115
116 # Test objdump -s
117
118 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -s tmpdir/bintest.o"]
119
120 set want "tmpdir/bintest.o:\[   \]*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)"
121
122 if [regexp $want $got] then {
123     pass "objdump -s"
124 } else {
125     fail "objdump -s"
126 }
127
128 # Options which are not tested: -a -d -D -R -T -x -l --stabs
129 # I don't see any generic way to test any of these other than -a.
130 # Tests could be written for specific targets, and that should be done
131 # if specific problems are found.