xf.li | bdd93d5 | 2023-05-12 07:10:14 -0700 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | # A tls test. |
| 3 | # Copyright (C) 2003-2016 Free Software Foundation, Inc. |
| 4 | # This file is part of the GNU C Library. |
| 5 | |
| 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. |
| 10 | |
| 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. |
| 15 | |
| 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/>. |
| 19 | |
| 20 | set -e |
| 21 | |
| 22 | common_objpfx=$1; shift |
| 23 | test_via_rtld_prefix=$1; shift |
| 24 | test_wrapper_env=$1; shift |
| 25 | run_program_env=$1; shift |
| 26 | logfile=$common_objpfx/nptl/tst-tls6.out |
| 27 | |
| 28 | # We have to find libc and nptl |
| 29 | library_path=${common_objpfx}:${common_objpfx}nptl |
| 30 | tst_tls5="${test_via_rtld_prefix} ${common_objpfx}/nptl/tst-tls5" |
| 31 | |
| 32 | > $logfile |
| 33 | fail=0 |
| 34 | |
| 35 | for aligned in a e f; do |
| 36 | echo "preload tst-tls5mod{$aligned,b,c,d}.so" >> $logfile |
| 37 | echo "===============" >> $logfile |
| 38 | ${test_wrapper_env} \ |
| 39 | ${run_program_env} \ |
| 40 | LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{$aligned,b,c,d}.so \ |
| 41 | | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1 |
| 42 | echo >> $logfile |
| 43 | |
| 44 | echo "preload tst-tls5mod{b,$aligned,c,d}.so" >> $logfile |
| 45 | echo "===============" >> $logfile |
| 46 | ${test_wrapper_env} \ |
| 47 | ${run_program_env} \ |
| 48 | LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{b,$aligned,c,d}.so \ |
| 49 | | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1 |
| 50 | echo >> $logfile |
| 51 | |
| 52 | echo "preload tst-tls5mod{b,c,d,$aligned}.so" >> $logfile |
| 53 | echo "===============" >> $logfile |
| 54 | ${test_wrapper_env} \ |
| 55 | ${run_program_env} \ |
| 56 | LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{b,c,d,$aligned}.so \ |
| 57 | | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1 |
| 58 | echo >> $logfile |
| 59 | done |
| 60 | |
| 61 | echo "preload tst-tls5mod{d,a,b,c,e}" >> $logfile |
| 62 | echo "===============" >> $logfile |
| 63 | ${test_wrapper_env} \ |
| 64 | ${run_program_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 |
| 68 | |
| 69 | echo "preload tst-tls5mod{d,a,b,e,f}" >> $logfile |
| 70 | echo "===============" >> $logfile |
| 71 | ${test_wrapper_env} \ |
| 72 | ${run_program_env} \ |
| 73 | LD_PRELOAD="`echo ${common_objpfx}nptl/tst-tls5mod{d,a,b,e,f}.so \ |
| 74 | | sed 's/:$//;s/: /:/g'`" ${tst_tls5} >> $logfile || fail=1 |
| 75 | echo >> $logfile |
| 76 | |
| 77 | exit $fail |