mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
c874a32e88
2003-09-01 Jakub Jelinek <jakub@redhat.com> * Makefile (tests): Add tst-tls1. (module-names): Add tst-tls1mod{,a,b,c,d,e,f}. ($(objpfx)tst-tls1mod{,a,b,c,d,e,f}.so-no-z-defs): Set to yes. ($(objpfx)tst-tls1): New. ($(objpfx)tst-tls2.out): Likewise. (tests): Depend on $(objpfx)tst-tls2.out. * tst-tls1.c: New test. * tst-tls1.h: New. * tst-tls1mod.c: New. * tst-tls1moda.c: New. * tst-tls1modb.c: New. * tst-tls1modc.c: New. * tst-tls1modd.c: New. * tst-tls1mode.c: New. * tst-tls1modf.c: New. * tst-tls2.sh: New test.
54 lines
1.7 KiB
Bash
54 lines
1.7 KiB
Bash
#!/bin/sh
|
|
|
|
common_objpfx=$1; shift
|
|
elf_objpfx=$1; shift
|
|
rtld_installed_name=$1; shift
|
|
logfile=$common_objpfx/linuxthreads/tst-tls2.out
|
|
|
|
# We have to find libc and linuxthreads
|
|
library_path=${common_objpfx}:${common_objpfx}linuxthreads
|
|
tst_tls1="${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
|
|
${common_objpfx}/linuxthreads/tst-tls1"
|
|
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
LANG=C
|
|
export LANG
|
|
|
|
> $logfile
|
|
fail=0
|
|
|
|
for aligned in a e f; do
|
|
echo "preload tst-tls1mod{$aligned,b,c,d}.so" >> $logfile
|
|
echo "===============" >> $logfile
|
|
LD_PRELOAD=`echo ${common_objpfx}linuxthreads/tst-tls1mod{$aligned,b,c,d}.so \
|
|
| sed 's/:$//;s/: /:/g'` ${tst_tls1} >> $logfile || fail=1
|
|
echo >> $logfile
|
|
|
|
echo "preload tst-tls1mod{b,$aligned,c,d}.so" >> $logfile
|
|
echo "===============" >> $logfile
|
|
LD_PRELOAD=`echo ${common_objpfx}linuxthreads/tst-tls1mod{b,$aligned,c,d}.so \
|
|
| sed 's/:$//;s/: /:/g'` ${tst_tls1} >> $logfile || fail=1
|
|
echo >> $logfile
|
|
|
|
echo "preload tst-tls1mod{b,c,d,$aligned}.so" >> $logfile
|
|
echo "===============" >> $logfile
|
|
LD_PRELOAD=`echo ${common_objpfx}linuxthreads/tst-tls1mod{b,c,d,$aligned}.so \
|
|
| sed 's/:$//;s/: /:/g'` ${tst_tls1} >> $logfile || fail=1
|
|
echo >> $logfile
|
|
done
|
|
|
|
echo "preload tst-tls1mod{d,a,b,c,e}" >> $logfile
|
|
echo "===============" >> $logfile
|
|
LD_PRELOAD=`echo ${common_objpfx}linuxthreads/tst-tls1mod{d,a,b,c,e}.so \
|
|
| sed 's/:$//;s/: /:/g'` ${tst_tls1} >> $logfile || fail=1
|
|
echo >> $logfile
|
|
|
|
echo "preload tst-tls1mod{d,a,b,e,f}" >> $logfile
|
|
echo "===============" >> $logfile
|
|
LD_PRELOAD=`echo ${common_objpfx}linuxthreads/tst-tls1mod{d,a,b,e,f}.so \
|
|
| sed 's/:$//;s/: /:/g'` ${tst_tls1} >> $logfile || fail=1
|
|
echo >> $logfile
|
|
|
|
exit $fail
|