From 3d91edb219b3970ccbc9dd53e24536b25fb41edf Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 20 Jan 1999 00:34:52 +0000 Subject: Update. 1999-01-20 Ulrich Drepper * elf/Makefile (tests): Add preloadtest. Add rules to build more test modules and the preloadtest binary. * elf/loadtest.c (TEST_ROUNDS): Increase to 1000. (testobjs): Add more modules. (tests): Add entries for new modules. * elf/preloadtest.c: New file. Test for LD_PRELOAD. * elf/testobj1.c: Add 'preload' function. * elf/testobj2.c: Likewise. * elf/testobj3.c: Likewise. * elf/testobj4.c: New file. * elf/testobj5.c: New file. * elf/testobj6.c: New file. --- elf/preloadtest.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 elf/preloadtest.c (limited to 'elf/preloadtest.c') diff --git a/elf/preloadtest.c b/elf/preloadtest.c new file mode 100644 index 0000000000..ac27f67150 --- /dev/null +++ b/elf/preloadtest.c @@ -0,0 +1,19 @@ +#include + +extern int preload (int); + +int +main (void) +{ + int res = preload (42); + + printf ("preload (42) = %d, %s\n", res, res == 92 ? "ok" : "wrong"); + + return res != 92; +} + +int +foo (int a) +{ + return a; +} -- cgit 1.4.1