diff options
author | Jakub Jelinek <jakub@redhat.com> | 2003-09-02 22:02:59 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2003-09-02 22:02:59 +0000 |
commit | 26c6ab8070f9f5c76fba438283c17e1049ae47f2 (patch) | |
tree | 26cd2747fa3cff0d8e3d7dae8fe1944991348f32 | |
parent | 14feaff359d7284bce6be4cd8f16574b295cc88e (diff) | |
download | glibc-26c6ab8070f9f5c76fba438283c17e1049ae47f2.tar.gz glibc-26c6ab8070f9f5c76fba438283c17e1049ae47f2.tar.xz glibc-26c6ab8070f9f5c76fba438283c17e1049ae47f2.zip |
New test.
-rwxr-xr-x | nptl/tst-tls6.sh | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/nptl/tst-tls6.sh b/nptl/tst-tls6.sh new file mode 100755 index 0000000000..1ae24fc6f0 --- /dev/null +++ b/nptl/tst-tls6.sh @@ -0,0 +1,53 @@ +#!/bin/sh + +common_objpfx=$1; shift +elf_objpfx=$1; shift +rtld_installed_name=$1; shift +logfile=$common_objpfx/nptl/tst-tls6.out + +# We have to find libc and nptl +library_path=${common_objpfx}:${common_objpfx}nptl +tst_tls5="${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \ + ${common_objpfx}/nptl/tst-tls5" + +LC_ALL=C +export LC_ALL +LANG=C +export LANG + +> $logfile +fail=0 + +for aligned in a e f; do + echo "preload tst-tls5mod{$aligned,b,c,d}.so" >> $logfile + echo "===============" >> $logfile + LD_PRELOAD=`echo ${common_objpfx}nptl/tst-tls5mod{$aligned,b,c,d}.so \ + | sed 's/:$//;s/: /:/g'` ${tst_tls5} >> $logfile || fail=1 + echo >> $logfile + + echo "preload tst-tls5mod{b,$aligned,c,d}.so" >> $logfile + echo "===============" >> $logfile + LD_PRELOAD=`echo ${common_objpfx}nptl/tst-tls5mod{b,$aligned,c,d}.so \ + | sed 's/:$//;s/: /:/g'` ${tst_tls5} >> $logfile || fail=1 + echo >> $logfile + + echo "preload tst-tls5mod{b,c,d,$aligned}.so" >> $logfile + echo "===============" >> $logfile + LD_PRELOAD=`echo ${common_objpfx}nptl/tst-tls5mod{b,c,d,$aligned}.so \ + | sed 's/:$//;s/: /:/g'` ${tst_tls5} >> $logfile || fail=1 + echo >> $logfile +done + +echo "preload tst-tls5mod{d,a,b,c,e}" >> $logfile +echo "===============" >> $logfile +LD_PRELOAD=`echo ${common_objpfx}nptl/tst-tls5mod{d,a,b,c,e}.so \ + | sed 's/:$//;s/: /:/g'` ${tst_tls5} >> $logfile || fail=1 +echo >> $logfile + +echo "preload tst-tls5mod{d,a,b,e,f}" >> $logfile +echo "===============" >> $logfile +LD_PRELOAD=`echo ${common_objpfx}nptl/tst-tls5mod{d,a,b,e,f}.so \ + | sed 's/:$//;s/: /:/g'` ${tst_tls5} >> $logfile || fail=1 +echo >> $logfile + +exit $fail |