various i386-aout and i386-coff target removal
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / tls_common.exp
CommitLineData
6a4a0940 1# Expect script for .tls_common tests
219d1afa 2# Copyright (C) 2006-2018 Free Software Foundation, Inc.
6a4a0940 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
6a4a0940 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
6a4a0940 9# (at your option) any later version.
f96b4a7b 10#
6a4a0940
JJ
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.
f96b4a7b 15#
6a4a0940
JJ
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.
6a4a0940
JJ
20#
21# Written by Jakub Jelinek (jakub@redhat.com)
22#
23
24# Make sure that binutils can correctly handle ld output in ELF.
25
5940a93c 26if { ![istarget *-*-linux*]
5a68afcf 27 && ![istarget *-*-nacl*]
5940a93c 28 && ![istarget *-*-gnu*] } {
6a4a0940
JJ
29 return
30}
31
6a4a0940
JJ
32global as
33global ld
34global READELF
35global srcdir
36global subdir
37global link_output
38
b8871f35
L
39if { ![ld_assemble $as "--elf-stt-common=no $srcdir/$subdir/tls_common.s" tmpdir/tls_commona.o]
40 || ![ld_assemble $as "--elf-stt-common=yes $srcdir/$subdir/tls_common.s" tmpdir/tls_commonb.o] } {
6a4a0940
JJ
41 unresolved "tls_common"
42 return
43}
44
d9816402
AM
45if { ![ld_link $ld tmpdir/tls_common1a.o "-r tmpdir/tls_commona.o"]
46 || ![ld_link $ld tmpdir/tls_common1b.o "-r tmpdir/tls_commona.o"] } {
6a4a0940
JJ
47 fail "tls_common"
48 return
49}
50
d9816402 51if { ![ld_link $ld tmpdir/tls_commona "tmpdir/tls_common1a.o"] } {
6a4a0940
JJ
52 if { [string match "*not supported*" $link_output]
53 || [string match "*unrecognized option*" $link_output] } {
54 unsupported "$ld_options is not supported by this target"
9793eb77 55 } elseif { [string match "*warning*alignment*of common symbol*" $link_output] } {
6a4a0940
JJ
56 fail "tls_common"
57 } else {
58 unresolved "tls_common"
59 }
60 return
5a68afcf 61}
6a4a0940 62
d9816402 63if { ![ld_link $ld tmpdir/tls_commonb "tmpdir/tls_common1b.o"] } {
b8871f35
L
64 if { [string match "*not supported*" $link_output]
65 || [string match "*unrecognized option*" $link_output] } {
66 unsupported "$ld_options is not supported by this target"
9793eb77 67 } elseif { [string match "*warning*alignment*of common symbol*" $link_output] } {
b8871f35
L
68 fail "tls_common"
69 } else {
70 unresolved "tls_common"
71 }
72 return
73}
74
75set readelf_output [run_host_cmd "$READELF" "-l --wide tmpdir/tls_commona"]
76if ![regexp ".*TLS.*0x0+ 0x0+4 R .*" $readelf_output] then {
77 send_log "$readelf_output\n"
78 fail "tls_common"
79 return
80}
81
82set readelf_output [run_host_cmd "$READELF" "-l --wide tmpdir/tls_commona"]
c219a7a5 83if ![regexp ".*TLS.*0x0+ 0x0+4 R .*" $readelf_output] then {
6a4a0940
JJ
84 send_log "$readelf_output\n"
85 fail "tls_common"
86 return
87}
88
89pass "tls_common"
This page took 0.620406 seconds and 4 git commands to generate.