bfd/
[binutils.git] / ld / testsuite / ld-sh / rd-sh.exp
blob926251baab322395ede0ab54e5006c01decfec72
1 # Expect script for run_dump_test based ld-sh tests.
2 #   Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
18 # Written by Hans-Peter Nilsson (hp@bitrange.com)
21 # This file is kept separate from sh.exp, because having it separate
22 # simplifies selective testing, like in "make check-ld
23 # RUNTESTFLAGS=rd-sh.exp=shared-1".  It is assumed that sh.exp is a place
24 # for constructs where the name of the test is harder to extract and
25 # select than here.
27 if ![istarget sh*-*-*] {
28     return
31 global ASFLAGS
32 global LDFLAGS
33 set asflags_save "$ASFLAGS"
34 set ldflags_save "$LDFLAGS"
36 if {[istarget sh64*-*-*] || [istarget sh5*-*-*]} then {
37     set ASFLAGS "$ASFLAGS -isa=SHcompact"
38     if [istarget sh64*-*-linux*] {
39         set LDFLAGS "$LDFLAGS -mshlelf32_linux"
40     } elseif { [istarget sh64*-*-netbsd*] || [istarget sh5*-*-netbsd*] } {
41         set LDFLAGS "$LDFLAGS -mshlelf32_nbsd -e_start"
42     } else {
43         set LDFLAGS "$LDFLAGS -mshlelf32"
44     }
47 set rd_test_list [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
48 foreach shtest $rd_test_list {
49     # We need to strip the ".d", but can leave the dirname.
50     verbose [file rootname $shtest]
51     run_dump_test [file rootname $shtest]
52     if [string match $srcdir/$subdir/*-dso.d $shtest] {
53         # Copy the output of the DSO-createing test to .so file.
54         # Notice that a DSO-creating test must preceed the tests
55         # which need that DSO in sort-order by name.
56         set cmd "cp tmpdir/dump tmpdir/[file rootname [file tail $shtest]].so"
57         send_log "$cmd\n"
58         set cmdret [catch "exec $cmd" comp_output]
59         send_log "$comp_output\n"
60         # FIXME: What if it fails?  Need we do something?
61     }
63 set ASFLAGS "$asflags_save"
64 set LDFLAGS "$ldflags_save"