]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/tst-pathopt.sh
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / elf / tst-pathopt.sh
CommitLineData
5a384a91
UD
1#! /bin/sh
2# Test lookup path optimization.
d4697bc9 3# Copyright (C) 2000-2014 Free Software Foundation, Inc.
5a384a91 4# This file is part of the GNU C Library.
41bdb6e2 5
5a384a91 6# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
7# modify it under the terms of the GNU Lesser General Public
8# License as published by the Free Software Foundation; either
9# version 2.1 of the License, or (at your option) any later version.
10
5a384a91
UD
11# The GNU C Library is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2
AJ
14# Lesser General Public License for more details.
15
16# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
17# License along with the GNU C Library; if not, see
18# <http://www.gnu.org/licenses/>.
5a384a91 19
57c69bef
DL
20set -e
21
5a384a91 22common_objpfx=$1
cc1290d0 23test_wrapper_env=$2
5a384a91
UD
24
25test -e ${common_objpfx}elf/will-be-empty &&
26 rm -fr ${common_objpfx}elf/will-be-empty
27test -d ${common_objpfx}elf/for-renamed ||
28 mkdir ${common_objpfx}elf/for-renamed
29
30cp ${common_objpfx}elf/pathoptobj.so ${common_objpfx}elf/for-renamed/renamed.so
31
cc1290d0 32${test_wrapper_env} \
5a384a91
UD
33LOCPATH=${common_objpfx}localedata GCONV_PATH=${common_objpfx}iconvdata \
34LC_ALL=C LD_LIBRARY_PATH=${common_objpfx}elf/will-be-empty:${common_objpfx}elf/for-renamed:${common_objpfx}.:${common_objpfx}dlfcn \
35 ${common_objpfx}elf/ld.so ${common_objpfx}elf/tst-pathopt \
36 > ${common_objpfx}elf/tst-pathopt.out
37
38exit $?