File: objdump.exp

package info (click to toggle)
binutils-gold 2.44-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 412,828 kB
  • sloc: ansic: 1,459,850; asm: 761,693; cpp: 215,799; exp: 78,086; makefile: 71,903; sh: 24,043; yacc: 15,048; lisp: 13,579; perl: 13,404; lex: 1,717; ada: 1,681; pascal: 1,446; cs: 879; python: 636; java: 478; sed: 191; xml: 95; awk: 25
file content (52 lines) | stat: -rw-r--r-- 1,828 bytes parent folder | download | duplicates (6)
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-2025 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
}