]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/testsuite/binutils-all/m68k/objdump.exp
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / binutils / testsuite / binutils-all / m68k / objdump.exp
CommitLineData
250d07de 1# Copyright (C) 2004-2021 Free Software Foundation, Inc.
8577e690
AS
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
32866df7 5# the Free Software Foundation; either version 3 of the License, or
8577e690
AS
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
b43b5d5f 15# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
8577e690
AS
16
17if {![istarget "m68*-*-*"] || [istarget "m68h*-*-*"] || [istarget "m681*-*-*"]} then {
18 return
19}
20
21if {[which $OBJDUMP] == 0} then {
22 perror "$OBJDUMP does not exist"
23 return
24}
25
26send_user "Version [binutil_version $OBJDUMP]"
27
28###########################
29# Set up the test of movem.s
30###########################
31
32if {![binutils_assemble $srcdir/$subdir/movem.s tmpdir/movem.o]} then {
f795c494 33 fail "movem test"
8577e690 34} else {
8577e690 35
f795c494
AM
36 if [is_remote host] {
37 set objfile [remote_download host tmpdir/movem.o]
38 } else {
39 set objfile tmpdir/movem.o
40 }
8577e690 41
f795c494 42 # Make sure that the movem is correctly decoded.
8577e690 43
f795c494 44 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS --disassemble $objfile"]
8577e690 45
f795c494
AM
46 set want "moveml %d0-%d3,%sp@-.*moveml %d0-%d3,%sp@\[\r\n\]"
47
48 if [regexp $want $got] then {
49 pass "movem test"
50 } else {
51 fail "movem test"
52 }
8577e690 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 {
f795c494 60 fail "fnop test"
1a2dab1f 61} else {
1a2dab1f 62
f795c494
AM
63 if [is_remote host] {
64 set objfile [remote_download host tmpdir/fnop.o]
65 } else {
66 set objfile tmpdir/fnop.o
67 }
1a2dab1f 68
f795c494 69 # Make sure that fnop is decoded as fnop, not fbf.
1a2dab1f 70
f795c494 71 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS --disassemble $objfile"]
1a2dab1f 72
f795c494
AM
73 set want "fnop *\[\r\n\]"
74
75 if [regexp $want $got] then {
76 pass "fnop test"
77 } else {
78 fail "fnop test"
79 }
1a2dab1f 80}