1 # Expect script for export table in executables tests
\r
2 # Copyright (C) 2003-2019 Free Software Foundation, Inc.
4 # This file is part of the GNU Binutils.
\r
6 # This program is free software; you can redistribute it and/or modify
\r
7 # it under the terms of the GNU General Public License as published by
\r
8 # the Free Software Foundation; either version 3 of the License, or
\r
9 # (at your option) any later version.
\r
11 # This program is distributed in the hope that it will be useful,
\r
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 # GNU General Public License for more details.
\r
16 # You should have received a copy of the GNU General Public License
\r
17 # along with this program; if not, write to the Free Software
\r
18 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
\r
19 # MA 02110-1301, USA.
\r
21 # Written by Fabrizio Gennari <fabrizio.ge@tiscalinet.it>
\r
22 # Based on auto-import.exp by Ralf.Habacker@freenet.de
\r
25 # This test can only be run on a cygwin platforms.
\r
26 if {![istarget *-pc-cygwin]} {
\r
27 verbose "Not a cygwin target."
\r
31 # No compiler, no test.
\r
32 if { ![check_compiler_available] } {
\r
33 untested "Exe export test (no compiler available)"
\r
37 proc run_dlltool { lib_file def_file } {
\r
42 if ![info exists dlltool] then {
\r
43 set dlltool [findfile $base_dir/../binutils/dlltool]
\r
46 if { [which $dlltool] == 0 } then {
\r
47 verbose "$dlltool does not exist"
\r
51 verbose "$dlltool --as $as -l $lib_file -d $def_file"
\r
52 catch "exec $dlltool --as $as -l $lib_file -d $def_file" dlltool_output
\r
55 regsub -all "\n+" $dlltool_output "" dlltool_output
\r
57 if [string match "" $dlltool_output] then {
\r
61 verbose -log "$dlltool_output"
\r
66 # A copy of ld_link (from ld-lib.exp) with extra
\r
67 # code to strip warnings about creating libraries.
\r
69 proc ld_special_link { ld target objects } {
\r
73 if { [which $ld] == 0 } then {
\r
74 verbose "$ld does not exist"
\r
78 if [is_endian_output_format $objects] then {
\r
79 set flags [big_or_little_endian]
\r
84 verbose -log "$ld $flags -o $target $objects"
\r
85 catch "exec $ld $flags -o $target $objects" link_output
\r
87 set exec_output [prune_warnings $link_output]
\r
89 # We don't care if we get a warning about a non-existent start
\r
90 # symbol, since the default linker script might use ENTRY.
\r
91 regsub -all "(^|\n)(\[^\n\]*: warning: cannot find entry symbol\[^\n\]*\n?)" $exec_output "\\1" exec_output
\r
93 # We don't care if we get a message about creating a library file.
\r
94 regsub -all "(^|\n)(Creating library file\[^\n\]*\n?)" $exec_output "\\1" exec_output
\r
96 if [string match "" $exec_output] then {
\r
100 verbose -log "$exec_output"
\r
106 # Set some libs needed for cygwin.
\r
107 set MYLDFLAGS "-Wl,--out-implib,$tmpdir/testexe.lib -nostartfiles -nostdlib"
\r
109 # Build an export library for testdll
\r
110 if ![run_dlltool $tmpdir/testdll.lib $srcdir/$subdir/testdll.def] {
\r
111 fail "building an export library for the shared lib"
\r
115 # Compile the executable.
\r
116 if ![ld_compile "$CC $CFLAGS" $srcdir/$subdir/testexe.c $tmpdir/testexe.o] {
\r
117 fail "compiling executable"
\r
121 if ![ld_special_link "$CC $LDFLAGS $MYLDFLAGS -e _testexe_main@16" $tmpdir/testexe.exe "$tmpdir/testexe.o $srcdir/$subdir/testexe.def $tmpdir/testdll.lib -lkernel32"] {
\r
122 fail "linking executable"
\r
127 if ![ld_compile "$CC $CFLAGS" $srcdir/$subdir/testdll.c $tmpdir/testdll.o] {
\r
128 fail "compiling shared lib"
\r
132 if ![ld_special_link "$CC $LDFLAGS -nostartfiles -nostdlib -e _testdll_main@12" $tmpdir/testdll.dll "$tmpdir/testdll.o $srcdir/$subdir/testdll.def $tmpdir/testexe.lib"] {
\r
133 fail "linking shared lib"
\r
137 # This is as far as we can go with a cross-compiler
\r
138 if ![isnative] then {
\r
139 verbose "Not running natively, so cannot execute binary"
\r
140 pass "Compile and link and executable with an export table"
\r
144 verbose -log "executing $tmpdir/testexe.exe"
\r
145 catch "exec $tmpdir/testexe.exe" prog_output
\r
148 if [string match $expected $prog_output] then {
\r
149 pass "export table in executable"
\r
151 verbose $prog_output
\r
152 fail "Output does not match expected string $expected"
\r