From 9da4b6afffd849f85c4892a2016c899358db99af Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 16 Feb 2007 21:35:21 +0000 Subject: make sure static variables are re-initialized everytime --- test/dlopen/Makefile | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'test/dlopen/Makefile') diff --git a/test/dlopen/Makefile b/test/dlopen/Makefile index 8c6032238..defe764ed 100644 --- a/test/dlopen/Makefile +++ b/test/dlopen/Makefile @@ -4,24 +4,26 @@ # rules need a little love to work with glibc ... export UCLIBC_ONLY := 1 -TESTS := dltest dltest2 test1 test2 test3 +TESTS := dltest dltest2 dlstatic test1 test2 test3 include ../Test.mak -CFLAGS_dltest := -DLIBNAME="\"./libtest.so\"" -CFLAGS_dltest2 := -DLIBNAME="\"./libtest3.so\"" +CFLAGS_dltest := -DLIBNAME="\"./libtest.so\"" +CFLAGS_dltest2 := -DLIBNAME="\"./libtest3.so\"" -LDFLAGS_dltest := -ldl -lpthread -LDFLAGS_dltest2 := -ldl -lpthread -LDFLAGS_test1 := -ldl -LDFLAGS_test2 := -ldl -LDFLAGS_test3 := -ldl ./libtest1.so ./libtest2.so -Wl,-rpath,. +LDFLAGS_dlstatic := -ldl +LDFLAGS_dltest := -ldl -lpthread +LDFLAGS_dltest2 := -ldl -lpthread +LDFLAGS_test1 := -ldl +LDFLAGS_test2 := -ldl +LDFLAGS_test3 := -ldl ./libtest1.so ./libtest2.so -Wl,-rpath,. DEBUG_LIBS := X WRAPPER := env $(DEBUG_LIBS)=all LD_LIBRARY_PATH="$$PWD:.:$(LD_LIBRARY_PATH)" dltest: libtest.so dltest2: libtest3.so +dlstatic: libstatic.so test1: libtest1.so test2: libtest1.so libtest2.so test3: libtest1.so libtest2.so -- cgit v1.2.3