summaryrefslogtreecommitdiff
path: root/binutils/testsuite/binutils-all/nfp/objdump.exp
blob: 2a3f8c9f4d91da06cec23021f2f2096b8af24a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#   Copyright (C) 2004-2023 Free Software Foundation, Inc.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.

if {![istarget nfp*-*-*]} {
  return
}

if {![is_remote host] && [which $OBJDUMP] == 0} then {
  perror "$OBJDUMP does not exist"
  return
}

send_user "Version [binutil_version $OBJDUMP]"

set outfile "tmpdir/dump.out"

set testname "NFP dissasembler NFP-6xxx instructions"
set dumpfile "$srcdir/$subdir/test1.d"
remote_exec host "${OBJDUMP} -d $srcdir/$subdir/test1_nfp6000.nffw" "" "/dev/null" "$outfile"
if { [regexp_diff "${outfile}" "${dumpfile}"] } then {
  fail $testname
  return
}

set testname "NFP dissasembler options: no-pc,ctx4"
set dumpfile "$srcdir/$subdir/test2_no-pc_ctx4.d"
remote_exec host "${OBJDUMP} -M no-pc,ctx4 -d $srcdir/$subdir/test2_nfp6000.nffw" "" "/dev/null" "$outfile"
if { [regexp_diff "${outfile}" "${dumpfile}"] } then {
  fail $testname
  return
}

set testname "NFP dissasembler options: ctx8"
set dumpfile "$srcdir/$subdir/test2_ctx8.d"
remote_exec host "${OBJDUMP} -M ctx8 -d $srcdir/$subdir/test2_nfp6000.nffw" "" "/dev/null" "$outfile"
if { [regexp_diff "${outfile}" "${dumpfile}"] } then {
  fail $testname
  return
}