1# Expect script for ld-sparc tests
2#   Copyright (C) 2002, 2003, 2005 Free Software Foundation
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# Test SPARC linking; all types of relocs.  This tests the assembler and
20# tools like objdump as well as the linker.
21
22if { !([istarget "sparc*-*-elf*"]
23       || [istarget "sparc*-sun-solaris*"]
24       || ([istarget "sparc*-*-linux*"]
25	   && ![istarget "*-*-*aout*"]
26	   && ![istarget "*-*-*oldld*"])) } {
27    return
28}
29
30# List contains test-items with 3 items followed by 2 lists:
31# 0:name 1:ld options 2:assembler options
32# 3:filenames of assembler files 4: action and options. 5: name of output file
33
34# Actions:
35# objdump: Apply objdump options on result.  Compare with regex (last arg).
36# nm: Apply nm options on result.  Compare with regex (last arg).
37# readelf: Apply readelf options on result.  Compare with regex (last arg).
38
39set sparctests {
40    {"TLS -fpic -shared transitions" "-shared -melf32_sparc"
41     "--32 -K PIC" {tlssunpic32.s tlspic.s}
42     {{readelf -WSsrl tlssunpic32.rd} {objdump -drj.text tlssunpic32.dd}
43      {objdump -sj.got tlssunpic32.sd} {objdump -sj.tdata tlssunpic32.td}}
44      "libtlssunpic32.so"}
45    {"Helper shared library" "-shared -melf32_sparc"
46     "--32 -K PIC" {tlslib.s} {} "libtlslib32.so"}
47    {"Another helper shared library" "-shared -melf32_sparc"
48     "--32 -K PIC" {tlssunbinpic32.s} {} "libtlssunbinpic32.so"}
49    {"TLS -fpic and -fno-pic exec transitions"
50     "-melf32_sparc tmpdir/libtlslib32.so tmpdir/tlssunbinpic32.o"
51     "--32" {tlssunbin32.s}
52     {{readelf -WSsrl tlssunbin32.rd} {objdump -drj.text tlssunbin32.dd}
53      {objdump -sj.got tlssunbin32.sd} {objdump -sj.tdata tlssunbin32.td}}
54      "tlssunbin32"}
55    {"TLS -fno-pic -shared" "-shared -melf32_sparc"
56     "--32" {tlssunnopic32.s tlsnopic.s}
57     {{readelf -WSsrl tlssunnopic32.rd} {objdump -drj.text tlssunnopic32.dd}
58      {objdump -sj.got tlssunnopic32.sd}} "libtlssunnopic32.so"}
59    {"TLS in debug sections" "-melf32_sparc"
60     "--32" {tlsg32.s}
61     {{objdump -sj.debug_foobar tlsg32.sd}} "tlsg32"}
62}
63set sparc64tests {
64    {"TLS -fpic -shared transitions" "-shared -melf64_sparc"
65     "--64 -Av9 -K PIC" {tlssunpic64.s tlspic.s}
66     {{readelf -WSsrl tlssunpic64.rd} {objdump -drj.text tlssunpic64.dd}
67      {objdump -sj.got tlssunpic64.sd} {objdump -sj.tdata tlssunpic64.td}}
68      "libtlssunpic64.so"}
69    {"Helper shared library" "-shared -melf64_sparc"
70     "--64 -Av9 -K PIC" {tlslib.s} {} "libtlslib64.so"}
71    {"Another helper shared library" "-shared -melf64_sparc"
72     "--64 -Av9 -K PIC" {tlssunbinpic64.s} {} "libtlssunbinpic64.so"}
73    {"TLS -fpic and -fno-pic exec transitions"
74     "-melf64_sparc tmpdir/libtlslib64.so tmpdir/tlssunbinpic64.o"
75     "--64 -Av9" {tlssunbin64.s}
76     {{readelf -WSsrl tlssunbin64.rd} {objdump -drj.text tlssunbin64.dd}
77      {objdump -sj.got tlssunbin64.sd} {objdump -sj.tdata tlssunbin64.td}}
78      "tlssunbin64"}
79    {"TLS -fno-pic -shared" "-shared -melf64_sparc"
80     "--64 -Av9" {tlssunnopic64.s tlsnopic.s}
81     {{readelf -WSsrl tlssunnopic64.rd} {objdump -drj.text tlssunnopic64.dd}
82      {objdump -sj.got tlssunnopic64.sd}} "libtlssunnopic64.so"}
83    {"TLS in debug sections" "-melf64_sparc"
84     "--64 -Av9" {tlsg64.s}
85     {{objdump -sj.debug_foobar tlsg64.sd}} "tlsg64"}
86}
87
88if { ![istarget "sparc64-*-elf*"] } {
89    run_ld_link_tests $sparctests
90}
91# run_ld_link_tests $sparc64tests
92