]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/tst-pathopt.sh
nptl/tst-cancel25 needs to be an internal test
[thirdparty/glibc.git] / elf / tst-pathopt.sh
CommitLineData
48d0341c 1#!/bin/sh
5a384a91 2# Test lookup path optimization.
04277e02 3# Copyright (C) 2000-2019 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 17# License along with the GNU C Library; if not, see
5a82c748 18# <https://www.gnu.org/licenses/>.
5a384a91 19
57c69bef
DL
20set -e
21
5a384a91 22common_objpfx=$1
cc1290d0 23test_wrapper_env=$2
8540f6d2 24run_program_env=$3
5a384a91
UD
25
26test -e ${common_objpfx}elf/will-be-empty &&
27 rm -fr ${common_objpfx}elf/will-be-empty
28test -d ${common_objpfx}elf/for-renamed ||
29 mkdir ${common_objpfx}elf/for-renamed
30
31cp ${common_objpfx}elf/pathoptobj.so ${common_objpfx}elf/for-renamed/renamed.so
32
cc1290d0 33${test_wrapper_env} \
8540f6d2
JM
34${run_program_env} \
35LD_LIBRARY_PATH=${common_objpfx}elf/will-be-empty:${common_objpfx}elf/for-renamed:${common_objpfx}.:${common_objpfx}dlfcn \
5a384a91
UD
36 ${common_objpfx}elf/ld.so ${common_objpfx}elf/tst-pathopt \
37 > ${common_objpfx}elf/tst-pathopt.out
38
39exit $?