2009-09-02 Tristan Gingold <gingold@adacore.com>
[binutils.git] / binutils / testsuite / binutils-all / bfin / objdump.exp
blobdf7d4da8bf133046b3ec6a3d99c383ba92a485c8
1 # Copyright 2009
2 # Free Software Foundation, Inc.
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
6 # the Free Software Foundation; either version 3 of the License, or
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.
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
16 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
18 if {![istarget "bfin-*-*"]} then {
19 return
22 if {[which $OBJDUMP] == 0} then {
23 perror "$OBJDUMP does not exist"
24 return
27 send_user "Version [binutil_version $OBJDUMP]"
29 ###################################
30 # Set up the test of unknown-mode.s
31 ###################################
33 if {![binutils_assemble $srcdir/$subdir/unknown-mode.s tmpdir/unknown-mode.o]} then {
34 return
37 if [is_remote host] {
38 set objfile [remote_download host tmpdir/unknown-mode.o]
39 } else {
40 set objfile tmpdir/unknown-mode.o
43 # Make sure that the unknown mode does not cause abort.
45 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -D $objfile"]
47 set want "e1 c1\[ \t\]*ILLEGAL.*34 98 .*\[\r\n\]"
49 if [regexp $want $got] then {
50 pass "unknown mode test"
51 } else {
52 fail "unknown mode test"