From: Ulrich Drepper Date: Tue, 2 Sep 2003 00:29:02 +0000 (+0000) Subject: (tests): Add tst-tls1. (module-names): Add tst-tls1mod{,a,b,c,d,e,f}. ($(objpfx)tst... X-Git-Tag: cvs/glibc-2_3_3~295 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3a88560b94668a5b4de5ca7161f3aea5f02e496;p=thirdparty%2Fglibc.git (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. --- diff --git a/linuxthreads/Makefile b/linuxthreads/Makefile index 6c3c351df8a..dbca5b5c819 100644 --- a/linuxthreads/Makefile +++ b/linuxthreads/Makefile @@ -121,14 +121,24 @@ endif ifeq (yes,$(build-shared)) tests-nodelete-yes = unload -tests += tst-_res1 +tests += tst-tls1 tst-_res1 endif -modules-names = tst-_res1mod1 tst-_res1mod2 +modules-names = tst-_res1mod1 tst-_res1mod2 \ + tst-tls1mod tst-tls1moda tst-tls1modb tst-tls1modc \ + tst-tls1modd tst-tls1mode tst-tls1modf extra-objs += $(addsuffix .os,$(strip $(modules-names))) test-extras += $(modules-names) test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names))) +tst-tls1mod.so-no-z-defs = yes +tst-tls1moda.so-no-z-defs = yes +tst-tls1modb.so-no-z-defs = yes +tst-tls1modc.so-no-z-defs = yes +tst-tls1modd.so-no-z-defs = yes +tst-tls1mode.so-no-z-defs = yes +tst-tls1modf.so-no-z-defs = yes + $(test-modules): $(objpfx)%.so: $(objpfx)%.os $(common-objpfx)shlib.lds $(build-module) @@ -305,6 +315,16 @@ endif ifeq (yes,$(build-shared)) $(objpfx)tst-_res1mod2.so: $(objpfx)tst-_res1mod1.so $(objpfx)tst-_res1: $(objpfx)tst-_res1mod2.so $(shared-thread-library) + +$(objpfx)tst-tls1: $(objpfx)tst-tls1mod.so $(shared-thread-library) + +tests: $(objpfx)tst-tls2.out +$(objpfx)tst-tls2.out: tst-tls2.sh $(objpfx)tst-tls1 \ + $(objpfx)tst-tls1moda.so $(objpfx)tst-tls1modb.so \ + $(objpfx)tst-tls1modc.so $(objpfx)tst-tls1modd.so \ + $(objpfx)tst-tls1mode.so $(objpfx)tst-tls1modf.so + $(SHELL) -e tst-tls2.sh $(common-objpfx) $(elf-objpfx) \ + $(rtld-installed-name) endif ifeq (no,$(cross-compiling))