]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-m68k/m68k.exp
bfd/
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-m68k / m68k.exp
1 # Expect script for run_dump_test based ld-m68k tests.
2 # Copyright 2006 Free Software Foundation, Inc.
3 #
4 # This file 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 2 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.
13 #
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.
17 #
18 # Test m68k object merging
19
20 if { ![is_elf_format] || ![istarget m68k-*-*] } {
21 return
22 }
23
24 # List contains test-items with 3 items followed by 2 lists:
25 # 0:name 1:ld options 2:assembler options
26 # 3:filenames of assembler files 4: action and options. 5: name of output file
27
28 # Actions:
29 # objdump: Apply objdump options on result. Compare with regex (last arg).
30 # nm: Apply nm options on result. Compare with regex (last arg).
31 # readelf: Apply readelf options on result. Compare with regex (last arg).
32
33 set m68k_mergeok_tests {
34 {"merge isa-a isa-a:nodiv" "-T merge.ld" ""
35 {isaa.s isaa-nodiv.s} {{objdump -p isaa.d}} "isaa"}
36 {"merge isa-a isa-b" "-T merge.ld" ""
37 {isaa.s isab.s} {{objdump -p isab.d}} "isab"}
38 {"merge isa-a isa-aplus" "-T merge.ld" ""
39 {isaa.s isaaplus.s} {{objdump -p isaaplus.d}} "isaplus"}
40 {"merge isa-b isa-b:nousp" "-T merge.ld" ""
41 {isab.s isab-nousp.s} {{objdump -p isab.d}} "isab"}
42 {"merge isa-a isa-a:mac" "-T merge.ld" ""
43 {isaa.s isaa-mac.s} {{objdump -p isaa-mac.d}} "isaa-mac"}
44 {"merge isa-b isa-b:float" "-T merge.ld" ""
45 {isab.s isab-float.s} {{objdump -p isab-float.d}} "isab-float"}}
46
47 run_ld_link_tests $m68k_mergeok_tests
48
49 run_dump_test "merge-error-1a"
50 run_dump_test "merge-error-1b"
51 run_dump_test "merge-error-1c"
52 run_dump_test "merge-error-1d"
53 run_dump_test "merge-error-1e"
54 run_dump_test "merge-ok-1a"
55 run_dump_test "merge-ok-1b"