ChangeLog rotatation and copyright year update
[deliverable/binutils-gdb.git] / ld / testsuite / ld-s390 / s390.exp
CommitLineData
6c597796 1# Expect script for ld-s390 tests
b90efa5b 2# Copyright (C) 2003-2015 Free Software Foundation, Inc.
6c597796 3#
f96b4a7b
NC
4# This file is part of the GNU Binutils.
5#
6# This program is free software; you can redistribute it and/or modify
6c597796 7# it under the terms of the GNU General Public License as published by
f96b4a7b 8# the Free Software Foundation; either version 3 of the License, or
6c597796
MS
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
f96b4a7b
NC
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
6c597796
MS
20#
21
22# Test s390 linking; all types of relocs. This tests the assembler and
23# tools like objdump as well as the linker.
24
25if { !([istarget "s390-*-*"] || [istarget "s390x-*-*"]) } {
26 return
27}
28
29# List contains test-items with 3 items followed by 2 lists:
897aea50
MR
30# 0:name 1:ld early options 2:ld late options 3:assembler options
31# 4:filenames of assembler files 5: action and options. 6: name of output file
6c597796
MS
32
33# Actions:
34# objdump: Apply objdump options on result. Compare with regex (last arg).
35# nm: Apply nm options on result. Compare with regex (last arg).
36# readelf: Apply readelf options on result. Compare with regex (last arg).
37
38set s390tests {
897aea50 39 {"TLS -fpic -shared transitions" "-shared -melf_s390" ""
6c597796
MS
40 "-m31" {tlspic1.s tlspic2.s}
41 {{readelf -Ssrl tlspic.rd} {objdump -dzrj.text tlspic.dd}
42 {objdump -sj.got tlspic.sd} {objdump -sj.tdata tlspic.td}}
43 "libtlspic.so"}
897aea50 44 {"Helper shared library" "-shared -melf_s390" ""
6c597796
MS
45 "-m31" {tlslib.s} {} "libtlslib.so"}
46 {"TLS -fpic and -fno-pic exec transitions"
897aea50 47 "-melf_s390 tmpdir/libtlslib.so" "" "-m31" {tlsbinpic.s tlsbin.s}
6c597796
MS
48 {{readelf -Ssrl tlsbin.rd} {objdump -dzrj.text tlsbin.dd}
49 {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
50 "tlsbin"}
a63cc5f7
AK
51 {"GOT: symbol address load from got to larl"
52 "-shared -melf_s390 --version-script=gotreloc-1.ver" ""
53 "-m31" {gotreloc-1.s}
54 {{objdump -dzrj.text gotreloc_31-1.dd}}
55 "gotreloc_31-1"}
6c597796
MS
56}
57
58set s390xtests {
897aea50 59 {"TLS -fpic -shared transitions" "-shared -melf64_s390" ""
6c597796
MS
60 "-m64 -Aesame" {tlspic1_64.s tlspic2_64.s}
61 {{readelf -WSsrl tlspic_64.rd} {objdump -dzrj.text tlspic_64.dd}
62 {objdump -sj.got tlspic_64.sd} {objdump -sj.tdata tlspic_64.td}}
63 "libtlspic_64.so"}
897aea50 64 {"Helper shared library" "-shared -melf64_s390" ""
6c597796
MS
65 "-m64 -Aesame" {tlslib_64.s} {} "libtlslib_64.so"}
66 {"TLS -fpic and -fno-pic exec transitions"
897aea50 67 "-melf64_s390 tmpdir/libtlslib_64.so" "" "-m64 -Aesame"
6c597796
MS
68 {tlsbinpic_64.s tlsbin_64.s}
69 {{readelf -WSsrl tlsbin_64.rd} {objdump -dzrj.text tlsbin_64.dd}
70 {objdump -sj.got tlsbin_64.sd} {objdump -sj.tdata tlsbin_64.td}}
71 "tlsbin_64"}
a63cc5f7
AK
72 {"GOT: symbol address load from got to larl"
73 "-shared -melf64_s390 --version-script=gotreloc-1.ver" ""
74 "-m64" {gotreloc-1.s}
75 {{objdump -dzrj.text gotreloc_64-1.dd}}
76 "gotreloc_64-1"}
6c597796
MS
77}
78
79if [istarget "s390-*-*"] {
80 run_ld_link_tests $s390tests
81}
82
83if [istarget "s390x-*-*"] {
a63cc5f7 84 run_ld_link_tests $s390tests
6c597796
MS
85 run_ld_link_tests $s390xtests
86}
This page took 0.497629 seconds and 4 git commands to generate.