binutils/:
[deliverable/binutils-gdb.git] / binutils / testsuite / binutils-all / m68k / objdump.exp
CommitLineData
1a2dab1f 1# Copyright 2004, 2007, 2009, 2010
8577e690
AS
2# Free Software Foundation, Inc.
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
32866df7 6# the Free Software Foundation; either version 3 of the License, or
8577e690
AS
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
b43b5d5f 16# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
8577e690
AS
17
18if {![istarget "m68*-*-*"] || [istarget "m68h*-*-*"] || [istarget "m681*-*-*"]} then {
19 return
20}
21
22if {[which $OBJDUMP] == 0} then {
23 perror "$OBJDUMP does not exist"
24 return
25}
26
27send_user "Version [binutil_version $OBJDUMP]"
28
29###########################
30# Set up the test of movem.s
31###########################
32
33if {![binutils_assemble $srcdir/$subdir/movem.s tmpdir/movem.o]} then {
34 return
35}
36
37if [is_remote host] {
38 set objfile [remote_download host tmpdir/movem.o]
39} else {
40 set objfile tmpdir/movem.o
41}
42
43# Make sure that the movem is correctly decoded.
44
45set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS --disassemble $objfile"]
46
47set want "moveml %d0-%d3,%sp@-.*moveml %d0-%d3,%sp@\[\r\n\]"
48
49if [regexp $want $got] then {
50 pass "movem test"
51} else {
52 fail "movem test"
53}
1a2dab1f
AS
54
55###########################
56# Set up the test of fnop.s
57###########################
58
59if {![binutils_assemble $srcdir/$subdir/fnop.s tmpdir/fnop.o]} then {
60 return
61}
62
63if [is_remote host] {
64 set objfile [remote_download host tmpdir/fnop.o]
65} else {
66 set objfile tmpdir/fnop.o
67}
68
69# Make sure that fnop is decoded as fnop, not fbf.
70
71set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS --disassemble $objfile"]
72
73set want "fnop *\[\r\n\]"
74
75if [regexp $want $got] then {
76 pass "fnop test"
77} else {
78 fail "fnop test"
79}
This page took 0.235775 seconds and 4 git commands to generate.