summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ldso/Makefile1
-rw-r--r--test/ldso/howdy.c12
2 files changed, 13 insertions, 0 deletions
diff --git a/test/ldso/Makefile b/test/ldso/Makefile
index 0a3f010c3..57b4a1fa6 100644
--- a/test/ldso/Makefile
+++ b/test/ldso/Makefile
@@ -19,6 +19,7 @@
TESTDIR=../
include $(TESTDIR)/Rules.mak
+CFLAGS+=--uclibc-ctors
all: dltest libhowdy.so run
dltest.o: dltest.c
diff --git a/test/ldso/howdy.c b/test/ldso/howdy.c
index 00a144b30..343c81d7c 100644
--- a/test/ldso/howdy.c
+++ b/test/ldso/howdy.c
@@ -5,3 +5,15 @@ int howdy(const char *s)
return printf("howdy: %s\n", s);
}
+void __attribute__((constructor)) howdy_ctor(void)
+{
+ printf("I am the libhowdy constructor!\n");
+}
+
+void __attribute__((destructor)) howdy_dtor(void)
+{
+ printf("I am the libhowdy destructor!\n");
+}
+
+
+