* ld-scripts/empty-address-3a.d, ld-scripts/empty-address-3b.d:
[deliverable/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.
f96b4a7b 3# Copyright 1999, 2000, 2001, 2002, 2003, 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 }
7f6a71ff 59 set exec_output [run_host_cmd "$objdump" "--private tmpdir/phdrs"]
252b5132
RH
60 set exec_output [prune_warnings $exec_output]
61 verbose -log $exec_output
62
63 if [regexp $phdrs_regexp $exec_output] {
64 pass $testname
65 } else {
66 fail $testname
67 }
68}
This page took 0.500454 seconds and 4 git commands to generate.