Imported Upstream version 2.4.2
[platform/upstream/libtool.git] / tests / link-2.test
1 #! /bin/sh
2 # link-2.test - check that .lo files aren't made into programs.
3 #
4 #   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
5 #   Written by Gary V. Vaughan, 2003
6 #
7 #   This file is part of GNU Libtool.
8 #
9 # GNU Libtool is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation; either version 2 of
12 # the License, or (at your option) any later version.
13 #
14 # GNU Libtool is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with GNU Libtool; see the file COPYING.  If not, a copy
21 # can be downloaded from  http://www.gnu.org/licenses/gpl.html,
22 # or obtained by writing to the Free Software Foundation, Inc.,
23 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 ####
25
26 . tests/defs || exit 1
27
28 rm -f hell.lo
29 cat > hell.lo <<EOF
30 # Generated by libtool
31 pic_object=none
32 non_pic_object=hell.o
33 EOF
34
35 # Try a sample link command.
36 linkresult=`$LIBTOOL -n --mode=link $CC -o something foo.o hell.lo`
37 res=$?
38
39 rm -f hell.lo
40
41 test $res -eq 0 || exit $EXIT_FAILURE
42
43 echo "$linkresult"
44 case "$linkresult" in
45 *".lo "*)
46   func_fail "$progname: .lo files should not be linked into programs"
47   ;;
48 esac
49
50 exit $EXIT_SUCCESS