Change sources over to using GPLv3
[deliverable/binutils-gdb.git] / binutils / testsuite / binutils-all / vax / objdump.exp
1 #
2 # Copyright 1993, 1994, 1995, 1997, 1999, 2000, 2002, 2005, 2007
3 # Free Software Foundation, Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
18 #
19
20 #
21 # This file was written by Jan-Benedict Glaw <jbglaw@lug-owl.de>. It's goal
22 # is to check the VAX-specific support of the -M entry:0xf00 switch, which
23 # allows to force function entry masks at given addresses.
24 #
25
26 if ![istarget vax*-*-*] then {
27 return
28 }
29
30 if {[which $OBJDUMP] == 0} then {
31 perror "$OBJDUMP does not exist"
32 return
33 }
34
35 send_user "Version [binutil_version $OBJDUMP]"
36
37 if {![binutils_assemble $srcdir/$subdir/entrymask.s tmpdir/entrymask.o]} then {
38 return
39 }
40
41 if [is_remote host] {
42 set objfile [remote_download host tmpdir/entrymask.o]
43 } else {
44 set objfile tmpdir/entrymask.o
45 }
46
47 #
48 # We check both function entry points. The second one at offset 2 will
49 # show up automatically on ELF targets, but needs to be set on a.out
50 # targets.
51 #
52 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -d -M entry:0x0 -M entry:2 $objfile"]
53 set want1 "\[ \]+0:\[ \]+10 01\[ \]+\\.word 0x0110.\*r8 r4"
54 set want2 "\[ \]+2:\[ \]+24 02\[ \]+\\.word 0x0224.\*r9 r5 r2"
55 if [regexp $want1 $got] then {
56 pass "entrymask test 1"
57 } else {
58 fail "entrymask test 1"
59 }
60 if [regexp $want2 $got] then {
61 pass "entrymask test 2"
62 } else {
63 fail "entrymask test 2"
64 }
This page took 0.038932 seconds and 5 git commands to generate.