Update copyright notices with scripts/update-copyrights
[glibc.git] / nptl / tst-tls6.sh
blob5a897fef6090199f459e58e673fa7b2c05458df1
1 #! /bin/bash
2 # A tls test.
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/>.
20 set -e
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"
31 LC_ALL=C
32 export LC_ALL
33 LANG=C
34 export LANG
36 > $logfile
37 fail=0
39 for aligned in a e f; do
40 echo "preload tst-tls5mod{$aligned,b,c,d}.so" >> $logfile
41 echo "===============" >> $logfile
42 ${test_wrapper_env} \
43 LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{$aligned,b,c,d}.so \
44 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1
45 echo >> $logfile
47 echo "preload tst-tls5mod{b,$aligned,c,d}.so" >> $logfile
48 echo "===============" >> $logfile
49 ${test_wrapper_env} \
50 LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{b,$aligned,c,d}.so \
51 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1
52 echo >> $logfile
54 echo "preload tst-tls5mod{b,c,d,$aligned}.so" >> $logfile
55 echo "===============" >> $logfile
56 ${test_wrapper_env} \
57 LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{b,c,d,$aligned}.so \
58 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1
59 echo >> $logfile
60 done
62 echo "preload tst-tls5mod{d,a,b,c,e}" >> $logfile
63 echo "===============" >> $logfile
64 ${test_wrapper_env} \
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
67 echo >> $logfile
69 echo "preload tst-tls5mod{d,a,b,e,f}" >> $logfile
70 echo "===============" >> $logfile
71 ${test_wrapper_env} \
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
74 echo >> $logfile
76 exit $fail