Update copyright notices with scripts/update-copyrights.
[glibc.git] / nptl / tst-tls6.sh
blobd5513a5e9e8c1f2c041aaca85a27b2c5b45240a4
1 #! /bin/bash
2 # A tls test.
3 # Copyright (C) 2003-2013 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 elf_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"
33 LC_ALL=C
34 export LC_ALL
35 LANG=C
36 export LANG
38 > $logfile
39 fail=0
41 for aligned in a e f; do
42 echo "preload tst-tls5mod{$aligned,b,c,d}.so" >> $logfile
43 echo "===============" >> $logfile
44 ${test_wrapper_env} \
45 LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{$aligned,b,c,d}.so \
46 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1
47 echo >> $logfile
49 echo "preload tst-tls5mod{b,$aligned,c,d}.so" >> $logfile
50 echo "===============" >> $logfile
51 ${test_wrapper_env} \
52 LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{b,$aligned,c,d}.so \
53 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1
54 echo >> $logfile
56 echo "preload tst-tls5mod{b,c,d,$aligned}.so" >> $logfile
57 echo "===============" >> $logfile
58 ${test_wrapper_env} \
59 LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{b,c,d,$aligned}.so \
60 | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1
61 echo >> $logfile
62 done
64 echo "preload tst-tls5mod{d,a,b,c,e}" >> $logfile
65 echo "===============" >> $logfile
66 ${test_wrapper_env} \
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
69 echo >> $logfile
71 echo "preload tst-tls5mod{d,a,b,e,f}" >> $logfile
72 echo "===============" >> $logfile
73 ${test_wrapper_env} \
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
76 echo >> $logfile
78 exit $fail