* ld-arm/arm-app.d, ld-arm/arm-app.r, ld-arm/arm-app.s,
[deliverable/binutils-gdb.git] / ld / testsuite / ld-arm / arm-elf.exp
CommitLineData
2e73b915
DJ
1# Expect script for various ARM ELF tests.
2# Copyright 2002, 2003, 2004 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17#
18
19# Exclude non-ARM-ELF targets.
20
21if { ![is_elf_format] || ![istarget "arm*-*-*"] } {
22 return
23}
24
25# List contains test-items with 3 items followed by 2 lists:
26# 0:name 1:ld options 2:assembler options
27# 3:filenames of assembler files 4: action and options. 5: name of output file
28
29# Actions:
30# objdump: Apply objdump options on result. Compare with regex (last arg).
31# nm: Apply nm options on result. Compare with regex (last arg).
32# readelf: Apply readelf options on result. Compare with regex (last arg).
33
34set armelftests {
35 {"Simple non-PIC shared library" "-shared" "" {arm-lib.s}
36 {{objdump -fdw arm-lib.d} {objdump -Rw arm-lib.r}}
37 "arm-lib.so"}
38 {"Simple PIC shared library" "-shared" "" {arm-lib-plt32.s}
39 {{objdump -fdw arm-lib-plt32.d} {objdump -Rw arm-lib-plt32.r}}
40 "arm-lib-plt32.so"}
41 {"Simple dynamic application" "tmpdir/arm-lib.so" "" {arm-app.s}
42 {{objdump -fdw arm-app.d} {objdump -Rw arm-app.r}}
43 "arm-app"}
44}
45
46run_ld_link_tests $armelftests
This page took 0.024839 seconds and 4 git commands to generate.