diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2010-01-23 09:31:05 -0800 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2010-01-23 09:31:05 -0800 |
commit | 47fd3a30139335207002481f747747e4e2a5bbb0 (patch) | |
tree | a572ae2284faecaa180c0f909126b83b8c88959e /test/tls | |
parent | d34dd9fb9950b79bcc14a187e52ee6ded387b243 (diff) |
test: fix static build of nptl and tls tests
also add needed -lpthread lines to timer_* tests,
since the implementation uses pthread functions
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'test/tls')
-rw-r--r-- | test/tls/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/tls/Makefile.in b/test/tls/Makefile.in index 69a8eaf27..839824df1 100644 --- a/test/tls/Makefile.in +++ b/test/tls/Makefile.in @@ -7,10 +7,16 @@ TESTS := tst-tls1 tst-tls2 tst-tls3 tst-tls4 tst-tls5 tst-tls6 tst-tls7 \ tst-tls1-static tst-tls2-static tst-tls9-static TESTS_DISABLED := tst-tls1-static tst-tls2-static tst-tls9-static +#all these tests require shared libraries +ifeq ($(HAVE_SHARED),) +TESTS_DISABLED := $(TESTS) +endif + # All these tests need tls.h, which is not installed with glibc GLIBC_TESTS_DISABLED := $(addsuffix _glibc,$(filter-out $(TESTS_DISABLED),$(TESTS))) + PTDIR := $(top_builddir)libpthread/nptl EXTRA_CFLAGS := -DNOT_IN_libc=1 \ |