gdb/
[deliverable/binutils-gdb.git] / ld / testsuite / ld-pe / vers-script.exp
1 # Expect script for version-script driven export from dll tests
2 # Copyright 2009
3 # Free Software Foundation, Inc.
4 #
5 # This file is part of the GNU Binutils.
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 # MA 02110-1301, USA.
21 #
22
23 # This test can only be run on PE/COFF platforms.
24 if {![is_pecoff_format]} {
25 return
26 }
27
28 # No compiler, no test.
29 if { [which $CC] == 0 } {
30 untested "PE version scripts"
31 return
32 }
33
34 proc build_vers_script_dll_o {} {
35 global CC
36 global CFLAGS
37 global srcdir
38 global subdir
39
40 # Compile the object file.
41 if ![ld_compile "$CC $CFLAGS -shared" $srcdir/$subdir/vers-script-dll.c tmpdir/vers-script-dll.o] {
42 fail "compiling shared lib object"
43 }
44 }
45
46 proc run_ver_script_test { testname } {
47 global CC
48 global srcdir
49 global subdir
50 global verbose
51
52 if ![ld_simple_link "$CC -shared \
53 -Wl,--version-script,$srcdir/$subdir/$testname.ver \
54 -Wl,--output-def,tmpdir/$testname.def" tmpdir/$testname.dll \
55 "tmpdir/vers-script-dll.o"] {
56 fail "linking DLL"
57 }
58
59 if { $verbose > 2 } then { verbose "output is [file_contents tmpdir/$testname.def]" 3 }
60 if { [regexp_diff tmpdir/$testname.def $srcdir/$subdir/$testname.d] } then {
61 fail $testname
62 if { $verbose == 2 } then { verbose "output is [file_contents tmpdir/$testname.def]" 2 }
63 return
64 }
65
66 pass "$testname"
67 }
68
69
70 build_vers_script_dll_o
71
72 run_ver_script_test "vers-script-1"
73 run_ver_script_test "vers-script-2"
74 run_ver_script_test "vers-script-3"
75 run_ver_script_test "vers-script-4"
76
This page took 0.365136 seconds and 4 git commands to generate.