aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-audit2.c
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
committerZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
commit5046dbb4a7eba5eccfd258f92f4735c9ffc8d069 (patch)
tree4470480d904b65cf14ca524f96f79eca818c3eaf /elf/tst-audit2.c
parent199fc19d3aaaf57944ef036e15904febe877fc93 (diff)
downloadglibc-zack/build-layout-experiment.tar
glibc-zack/build-layout-experiment.tar.gz
glibc-zack/build-layout-experiment.tar.bz2
glibc-zack/build-layout-experiment.zip
Prepare for radical source tree reorganization.zack/build-layout-experiment
All top-level files and directories are moved into a temporary storage directory, REORG.TODO, except for files that will certainly still exist in their current form at top level when we're done (COPYING, COPYING.LIB, LICENSES, NEWS, README), all old ChangeLog files (which are moved to the new directory OldChangeLogs, instead), and the generated file INSTALL (which is just deleted; in the new order, there will be no generated files checked into version control).
Diffstat (limited to 'elf/tst-audit2.c')
-rw-r--r--elf/tst-audit2.c60
1 files changed, 0 insertions, 60 deletions
diff --git a/elf/tst-audit2.c b/elf/tst-audit2.c
deleted file mode 100644
index 0e66f5c328..0000000000
--- a/elf/tst-audit2.c
+++ /dev/null
@@ -1,60 +0,0 @@
-/* Test case for early TLS initialization in dynamic linker. */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <dlfcn.h>
-
-#define MAGIC1 0xabcdef72
-#define MAGIC2 0xd8675309
-static __thread unsigned int magic[] = { MAGIC1, MAGIC2 };
-static __thread int calloc_called;
-
-#undef calloc
-
-/* This calloc definition will be called by the dynamic linker itself.
- We test that interposed calloc is called by the dynamic loader, and
- that TLS is fully initialized by then. */
-
-void *
-calloc (size_t n, size_t m)
-{
- if (!calloc_called)
- {
- /* Allow our calloc to be called more than once. */
- calloc_called = 1;
- if (magic[0] != MAGIC1 || magic[1] != MAGIC2)
- {
- printf ("{%x, %x} != {%x, %x}\n",
- magic[0], magic[1], MAGIC1, MAGIC2);
- abort ();
- }
- magic[0] = MAGIC2;
- magic[1] = MAGIC1;
- }
-
- n *= m;
- void *ptr = malloc (n);
- if (ptr != NULL)
- memset (ptr, '\0', n);
- return ptr;
-}
-
-static int
-do_test (void)
-{
- /* Make sure that our calloc is called from the dynamic linker at least
- once. */
- void *h = dlopen("$ORIGIN/tst-auditmod9b.so", RTLD_LAZY);
- if (h != NULL)
- dlclose (h);
- if (magic[1] != MAGIC1 || magic[0] != MAGIC2)
- {
- printf ("{%x, %x} != {%x, %x}\n", magic[0], magic[1], MAGIC2, MAGIC1);
- return 1;
- }
-
- return 0;
-}
-
-#include <support/test-driver.c>