3 # Copyright (C) 2003-2014 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
23 test_via_rtld_prefix
=$1; shift
24 test_wrapper_env
=$1; shift
25 logfile
=$common_objpfx/nptl
/tst-tls6.out
27 # We have to find libc and nptl
28 library_path
=${common_objpfx}:${common_objpfx}nptl
29 tst_tls5
="${test_via_rtld_prefix} ${common_objpfx}/nptl/tst-tls5"
39 for aligned
in a e f
; do
40 echo "preload tst-tls5mod{$aligned,b,c,d}.so" >> $logfile
41 echo "===============" >> $logfile
43 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{$aligned,b,c,d}.so \
44 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1
47 echo "preload tst-tls5mod{b,$aligned,c,d}.so" >> $logfile
48 echo "===============" >> $logfile
50 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{b,$aligned,c,d}.so \
51 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1
54 echo "preload tst-tls5mod{b,c,d,$aligned}.so" >> $logfile
55 echo "===============" >> $logfile
57 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{b,c,d,$aligned}.so \
58 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1
62 echo "preload tst-tls5mod{d,a,b,c,e}" >> $logfile
63 echo "===============" >> $logfile
65 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{d,a,b,c,e}.so \
66 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1
69 echo "preload tst-tls5mod{d,a,b,e,f}" >> $logfile
70 echo "===============" >> $logfile
72 LD_PRELOAD
="`echo ${common_objpfx}nptl/tst-tls5mod{d,a,b,e,f}.so \
73 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail
=1