3 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
6 # The GNU C Library is free software; you can redistribute it and/or
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.
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
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with the GNU C Library; if not, see
18 # <http://www.gnu.org/licenses/>.
22 common_objpfx
=$1; shift
24 rtld_installed_name
=$1; shift
25 test_wrapper_env
=$1; shift
26 logfile
=$common_objpfx/nptl
/tst-tls6.out
28 # We have to find libc and nptl
29 library_path
=${common_objpfx}:${common_objpfx}nptl
30 tst_tls5
="${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
31 ${common_objpfx}/nptl/tst-tls5"
41 for aligned
in a e f
; do
42 echo "preload tst-tls5mod{$aligned,b,c,d}.so" >> $logfile
43 echo "===============" >> $logfile
45 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{$aligned,b,c,d}.so \
46 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1
49 echo "preload tst-tls5mod{b,$aligned,c,d}.so" >> $logfile
50 echo "===============" >> $logfile
52 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{b,$aligned,c,d}.so \
53 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1
56 echo "preload tst-tls5mod{b,c,d,$aligned}.so" >> $logfile
57 echo "===============" >> $logfile
59 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{b,c,d,$aligned}.so \
60 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1
64 echo "preload tst-tls5mod{d,a,b,c,e}" >> $logfile
65 echo "===============" >> $logfile
67 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{d,a,b,c,e}.so \
68 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1
71 echo "preload tst-tls5mod{d,a,b,e,f}" >> $logfile
72 echo "===============" >> $logfile
74 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{d,a,b,e,f}.so \
75 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1