about summary refs log tree commit diff
path: root/elf/preloadtest.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-20 00:34:52 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-20 00:34:52 +0000
commit3d91edb219b3970ccbc9dd53e24536b25fb41edf (patch)
treeef522a32e560cd00bb86c895590859f7cbdf9fc6 /elf/preloadtest.c
parentb25d4ff04dff85bd1d32741cc0a320ee38cfdf51 (diff)
downloadglibc-3d91edb219b3970ccbc9dd53e24536b25fb41edf.tar.gz
glibc-3d91edb219b3970ccbc9dd53e24536b25fb41edf.tar.xz
glibc-3d91edb219b3970ccbc9dd53e24536b25fb41edf.zip
Update.
1999-01-20  Ulrich Drepper  <drepper@cygnus.com>

	* 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.
Diffstat (limited to 'elf/preloadtest.c')
-rw-r--r--elf/preloadtest.c19
1 files changed, 19 insertions, 0 deletions
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 <stdio.h>
+
+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;
+}