From 59146c35832695bc944197115986f8e7f0dea947 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 19 Aug 2003 14:24:14 +0000 Subject: Update the tests a little bit --- test/dlopen/libtest1.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/dlopen/libtest1.c') diff --git a/test/dlopen/libtest1.c b/test/dlopen/libtest1.c index c440d9b4a..f0dc9f537 100644 --- a/test/dlopen/libtest1.c +++ b/test/dlopen/libtest1.c @@ -5,22 +5,22 @@ extern int libtest2_func(const char *s); void __attribute__((constructor)) libtest1_ctor(void) { - printf("I am the libtest1 constructor!\n"); + printf("libtest1: constructor!\n"); } void __attribute__((destructor)) libtest1_dtor(void) { - printf("I am the libtest1 destructor!\n"); + printf("libtest1: destructor!\n"); } void __attribute__((weak)) function1(void) { - printf("libtest1: I am function1 from libtest1!\n"); + printf("libtest1: I am weak function1!\n"); } void function2(void) { - printf("libtest1: I am overriding function2!\n"); + printf("libtest1: I am function2!\n"); } -- cgit v1.2.3