]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-scripts/phdrs.exp
* readelf.c (get_machine_dlags): Add support for RX's PID mode.
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-scripts / phdrs.exp
CommitLineData
252b5132
RH
1# Test PHDRS in a linker script.
2# By Ian Lance Taylor, Cygnus Support.
aa820537 3# Copyright 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007
a2b64bed
NC
4# Free Software Foundation, Inc.
5#
f96b4a7b
NC
6# This file is part of the GNU Binutils.
7#
8# This program is free software; you can redistribute it and/or modify
a2b64bed 9# it under the terms of the GNU General Public License as published by
f96b4a7b 10# the Free Software Foundation; either version 3 of the License, or
a2b64bed 11# (at your option) any later version.
7f9adacd 12#
a2b64bed
NC
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
7f9adacd 17#
a2b64bed
NC
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
f96b4a7b
NC
20# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21# MA 02110-1301, USA.
252b5132
RH
22
23# PHDRS is only meaningful for ELF.
7ed2b4e2 24if ![is_elf_format] {
252b5132
RH
25 return
26}
27
28# This is a very simplistic test.
29
30set testname "PHDRS"
31
e9f53129
AM
32set ldopt ""
33if { [istarget spu*-*-*] } {
34 set ldopt "--local-store 0:0"
35}
36
252b5132
RH
37if ![ld_assemble $as $srcdir/$subdir/phdrs.s tmpdir/phdrs.o] {
38 unresolved $testname
39 return
40}
41
42set phdrs_regexp \
7f9adacd 43".*Program Header:.*PHDR *off *0x00*34 *vaddr *0x00*800034 *paddr *0x00*800034.*filesz *0x0\[0-9a-f\]* *memsz *0x0\[0-9a-f\]* flags r--.*LOAD *off *0x00* *vaddr *0x00*800000 *paddr *0x00*800000.*filesz *0x00*\[0-9a-f\]* *memsz *0x0\[0-9a-f\]* *flags r-x.*LOAD *off *0x0\[0-9a-f\]* *vaddr *0x00*80*\[0-9a-f\]* *paddr *0x00*80*\[0-9a-f\]*.*filesz *0x0\[0-9a-f\]* *memsz *0x0\[0-9a-f\]* *flags *rw-.*"
252b5132
RH
44
45# On a 64 bit ELF format, we need different numbers.
7ed2b4e2
L
46if [is_elf64 tmpdir/phdrs.o] {
47 set phdrs_regexp \
7f9adacd 48".*Program Header:.*PHDR *off *0x00*40 *vaddr *0x00*800040 *paddr *0x00*800040.*filesz *0x0\[0-9a-f\]* *memsz *0x0\[0-9a-f\]* flags r--.*LOAD *off *0x00* *vaddr *0x00*800000 *paddr *0x00*800000.*filesz *0x00*\[0-9a-f\]* *memsz *0x0\[0-9a-f\]* *flags r-x.*LOAD *off *0x0\[0-9a-f\]* *vaddr *0x00*80*\[0-9a-f\]* *paddr *0x00*80*\[0-9a-f\]*.*filesz *0x0\[0-9a-f\]* *memsz *0x0\[0-9a-f\]* *flags *rw-.*"
252b5132
RH
49}
50
e9f53129
AM
51set ldopt "$ldopt -T $srcdir/$subdir/phdrs.t tmpdir/phdrs.o"
52if ![ld_simple_link $ld tmpdir/phdrs $ldopt] {
252b5132
RH
53 fail $testname
54} else {
7f6a71ff 55 if {![is_remote host] && [which $objdump] == 0} {
252b5132
RH
56 unresolved $testname
57 return
58 }
e3b66208 59 set exec_output [run_host_cmd "$objdump" "--private-headers tmpdir/phdrs"]
252b5132
RH
60 set exec_output [prune_warnings $exec_output]
61 verbose -log $exec_output
62
d4cb0ea0
NC
63 # The RX port sets the p_paddr of loadable segments to 0 in order
64 # to be compatible with Renesas tools. When an RX executable is
65 # loaded into a BFD based tool the code tries to reconstruct the
66 # correct vaddr and paddr values. This is not always possible
67 # however and this test is one example of where the reconstruction
68 # fails.
69 setup_xfail rx-*-*
70
252b5132
RH
71 if [regexp $phdrs_regexp $exec_output] {
72 pass $testname
73 } else {
74 fail $testname
75 }
76}